简体   繁体   中英

Android Facebook events using Graph Api

I have created the event successfully using Graph Api as follows.

Bundle params = new Bundle();
params.putString("name", "Sample Emvent");
params.putString("start_time", "2013-07-04");
Utility.mAsyncRunner.request("me/events", params, "POST",
                             new EventListener(), null);

I got some id as response. Now my questions are 1) How can I share this event ?. 2) How can I Check-in into this event?

Any help greatly Appreciated.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM