Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code

        JSONObject event = new JSONObject();
        Bundle bundle = new Bundle();
        bundle.putString("method","events.create");
        event.put("name", "name");
        event.put("location", "Address");
        event.put("start_time", "2011-12-15T10:13:00");
        event.put("end_time", "2011-12-15T10:20:00");
        event.put("privacy_type", "OPEN");
        event.put("event_info", "INFO");
        Log.d(TAG,"evento "+mFacebook.request(bundle));

and this error...

             {"error_code":100,"error_msg":"The parameter event_info is                                                       required","request_args":   [{"key":"access_token","value":"asdasdasd"},{"key":"method","value":"events.create"},{"key":"format","value":"json"}]}

i'm using the old api...if you know create events in Android using the new Api I will be grateful

Thanks in advance

share|improve this question
Hi benoffi7.. i am also trying to add events from my app. Am not getting any idea. can u pls post some code.. Thank you – wolverine Aug 10 '12 at 13:08
Hi wolverine! There is an correct answer below my question. Try to do that in your app. – benoffi7 Aug 10 '12 at 17:19
am also getting the same error when i post the event. can u post me sample cod efor that – wolverine Aug 11 '12 at 6:31

2 Answers

up vote 1 down vote accepted

You can create event using Graph API: send POST request. I try with parameters: name, start_time, end_time, description, privacy_type. If I right understood requered params only name and start_time. If you not set end_time, it will be equal start_time + 3h. By default privacy is OPEN. But I not understood, what you want from event_info? You can add to POST field location. Or you want send extend information with facebook object as some place (as in Graph API venue)?

share|improve this answer

Problem with your syntax. event_info tag take jsonObject not string. You have to pass Json object as parameter for event_info. This is my working code . Try this.

JSONObject json = null;

                      try {
            json = new JSONObject();
            json.put("privacy_type", "OPEN");
            json.put("name", mEventName.toString());
            json.put("start_time",mCurrentDateTime);
            json.put("end_time", mExpiryDateTime);
            json.put("description",mEventName.toString());
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    Bundle params = new Bundle();
    params.putString("method", "events.create");

    params.putString("event_info", json.toString());
    String response = "";
    try {
        response = facebook.request(params);
        Log.d("gaurav", "response of create events ="+response);
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

This is working fine for me.I hope it will work for you.

share|improve this answer
the "facebook" variable, which class is that? thanks! – Hong Zhou Feb 4 at 16:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.