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'm trying to create my own actions/objects. When checking with the debugger everything is fine, but when testing with my dev account I get this in my callback:

{"data":[]}

Is it good or not because I see anything in my timeline, news feed or ticker.

When testing with a test user I get this error:

{
"error": {
    "message": "Call to a member function on a non-object",
    "type":"BadMethodCallException"
    }
}

What's wrong?

share|improve this question
Could you provide an example of the call you are using? – phwd Oct 16 '12 at 18:29
Are you using the test user's access token? – Igy Oct 16 '12 at 18:35
var token= FB.getAccessToken(); FB.api("/me/[MY_APP_NAMESPACE]:hunt?animal=OBJECT_URL&access_token=" + token, callBackTest); – user1750445 Oct 16 '12 at 18:44
you are making GET request that is the problem, you need to make POST request, see my answer hope that helps. – Smita Oct 16 '12 at 19:07

1 Answer

up vote 1 down vote accepted

You are supposed to make POST request to facebook api something like below and make sure you have initialised FB:

var opts = {
                animal : OBJECT_URL,
                access_token: token
            };

            FB.api('/me/[MY_APP_NAMESPACE]:hunt', 'post', opts, function(response)
            {

            });
share|improve this answer
FACEPALM Thanks Smita! – user1750445 Oct 16 '12 at 19:37

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.