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.

Hi guys this is my first post in here hope someone can help.

Using correct app access token still receive (#15) This method must be called with an app access_token cannot find help or answer anywhere.

I have read all the topics on this and I am doing everything correctly even using the access token tool and using that access token in the open graph explorer gives me the same response.

App is st up as game, the enable scores dialog is on the aggregations etc are set up as they use defaults when you turn on scores dialog, I cannot for the life of me find any answer that doesn't give what I have already done.

I have searched the net for two days and it is a major hold up with the release of a clients game, I have the rest of the graph api sussed its just this that is holding me up.

Really hope someone can help me get over this hurdle.

Thanks in advance.

$token_url = 'https://graph.facebook.com/oauth/access_token?'
. 'client_id=' . $fb_app_id
. '&client_secret=' . $fb_app_secret
. '&grant_type=client_credentials';

$token_response = file_get_contents($token_url);
$params = null;
parse_str($token_response, $params);
$app_access_token = $params['access_token'];

echo $app_access_token; // matches access token found in access token tool                            

$scoreUpdate = $facebook->api('/'.$userid.'/scores?score='.$score.'&access_token='.$app_access_token, 'post');

print_r($scoreUpdate);
share|improve this question
What method are you trying to call? Try posting the full graph api call here. – kevin Nov 3 '11 at 18:12
OK figured out how to get code in, thanks for the reply is anyone able to help please really cant understand why it is throwing the error. – Adam Milton-Barker Nov 4 '11 at 1:17
Silly question, but $userid has authorised your app and granted the publish_actions permission, right? If you're trying to update the score, that should be a POST request, either directly as a HTTP POST request, or by adding a &method=post parameter to the call – Igy Nov 4 '11 at 10:44
Yes at the moment it is just me testing it and I am admin and have all the correct permissions granted, ok great I shall try that out thank you greatly for your reply – Adam Milton-Barker Nov 5 '11 at 3:12
I have also now added the &method=post and it is still comming up with that error, really dont get it have had no issue with the entire open graph beta but this will not work :S – Adam Milton-Barker Nov 5 '11 at 18:25
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.