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 want to get all the application request in facebook. I have the following code ...It seems it returns me an empty array. Why is that ..Is there an alternative way using javascript to retrieve all my application requests?

function Getrequests2()
            {       

                FB.getLoginStatus(function(response) {
              if (response.status === 'connected') {
                // the user is logged in and connected to your
                // app, and response.authResponse supplies
                // the user's ID, a valid access token, a signed
                // request, and the time the access token 
                // and signed request each expire

                var access_token = myaccesstoken;

                 FB.api('/me/apprequests/?access_token='+access_token, function(user) 
                                            {

                                                    if (user) {
                                                                    alert(access_token);console.log(user);
                                                        }
                                            }
                        )
              } else if (response.status === 'not_authorized') {
                // the user is logged in to Facebook, 
                //but not connected to the app
              } else {
                // the user isn't even logged in to Facebook.
              }
             });


           }    
share|improve this question

1 Answer

This "Unknown path components: /access_token=myaccesstoken" error message means, you try to access to something what is not exist. Check the documentation which paths are exist.

If youtry to get information about the user, replace this

'/me/apprequests/access_token=' to '/me?access_token='

In this case you access to /me information with the access_token.

share|improve this answer

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.