I did the following coding:
Inside onCreate() I wrote:
Facebook fc = new Facebook("392736034134808");
AsyncFacebookRunner mAsuncRunner = new AsyncFacebookRunner(fc);
mAsuncRunner.request("/me/events",new EventRequestListener());
My EventReqestListner class that is below onCreate() is like this:
class EventRequestListener implements
com.facebook.android.AsyncFacebookRunner.RequestListener {
public void onComplete(final String response) throws JSONException{
System.out.println("in oncomplete of friend request listner ....");
String Name= "test";
String Location= "test";
String Description= "desc";
JSONObject event = new JSONObject();
Bundle bundle = new Bundle();
bundle.putString("method","events.create");
event.put("page_id",123454);
event.put("name",Name);
event.put("location",Location);
event.put("start_time", "2013-05-14T10:13:00");
event.put("end_time", "2013-05-15T10:20:00");
event.put("privacy_type", "OPEN");
bundle.putString("event_info",event.toString());
try {
fc.request("POST", bundle);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Event Posted");
}
My problem is this, I do not get any errors, exceptions. Also I do net get the event created. I am very new to android, your help is really valuable. Thank you!!