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 have been trying to make the following Facebook graph api call...

https://graph.facebook.com/me&access_token=mytokenhere

I have been making this exact same call for months now with no issue. I am getting the following response back...

{
   "error": {
      "message": "(#803) Some of the aliases you requested do not exist: me&access_token=mytokenhere",
      "type": "OAuthException",
      "code": 803
   }
}

Obviously mytokenhere is replaced with my actual token, not passing the literal 'mytokenhere'.

Any help would be appreciated!

share|improve this question

1 Answer

up vote 1 down vote accepted

It looks like you are not calling the qs parameter correctly.

Try this:

https://graph.facebook.com/me?access_token=mytokenhere

share|improve this answer
Thank you, looks like that solved my problem. I can't help but wonder why it has been working all this time though! Oh well, who cares, THANK YOU SO MUCH! – Drakonen Darkdestiney Dec 11 '12 at 20:19

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.