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 use

FB.api('/me/apprequests/?access_token=' + access_token + '&date_format=' + escape('Y/m/d H:i:s eO'), function(response) {
    if(response.error)
    {

to get user's app requests. but some times,some users cannot get the app requests list. only get {"error":{"type":"http","message":"unknown error"}}

some users may get this error all the time. I trace this error to my GA quality,Statistical results show some users get this error As many as tens of thousands of times.

the access_token is the current user's.

why some user get unknown error with type http?

I do not get this.

thank you.

thanks for your answer.

I think this error is not caused due to the permission.because I log the access_token when one error occurs.and use facebook debug tool check it.It shows

Issued: 
1362702044 (about an hour ago)
Expires:    
1367886044 (in about 2 months)
Valid:  True
Origin: Web
Scopes: email publish_actions user_games_activity

.So ,I do not known why those problem occur.

share|improve this question
Are you checking if the user has all required permissions before making the api call? You might get this error when user didn't give you some extended permission. – Darvex Mar 6 at 8:10
thanks for your response. after FB.init,I call FB.api('/'+userfbid+'/permissions',{access_token: access_token}, function(response){ permissions = response.data; permissions = permissions[0]; if(!permissions.publish_actions || !permissions.user_games_activity) { FB.login(function(response) { // handle the response }, {scope: 'publish_actions,user_games_activity,email'}); } }); to ensure users have the right permissions. – Edward Lee Mar 6 at 8:15
I use fql instead of graph api to get the app requests.but some users get the same error. – Edward Lee Mar 22 at 1:11

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.