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 created my own action on my facebook app and sent for approval. They asked me to re-submit the action after testing my action with 'Auth Dialog Preview User' and ensure that the action appears on it's timeline.

When i try to post an action through facebook's javascript-sdk from the test user, i get an console error as

message: "Call to a member function on a non-object" type: "BadMethodCallException"

The post is successfull through the admin account. but when i switch the account to the test user, it fails.

Any help would be appreciated. Thankyou!

share|improve this question

1 Answer

think I had the same issue. Got a null response after publishing the action using the test account.

This is because by default, Facebook only allows Basic Information permissions to the App. So OG Actions get rejected.

Try to do this,

  1. Login to the test account
  2. Go to Settings
  3. Go to Apps
  4. Remove your app
  5. Open your app

that will make it to re-authorize the App and then your App has permission to publish OG actions through the testing account.

100% worked for me :)

share|improve this answer

protected by Community Oct 19 '12 at 11:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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