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.