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.
You can share the event with this url:
https://www.facebook.com/events/EVENT_IDYou can RSVP the user as attending using the Graph API, by issuing an HTTP POST to EVENT_ID/attending. See here: https://developers.facebook.com/docs/reference/api/event/