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'm trying to create test users for my Facebook application. They announced this functionality in this blog post in November (http://developers.facebook.com/blog/post/429) and it is documented here (http://developers.facebook.com/docs/test_users/). I could not find the answer to this elsewhere...

According to the documentation, "You can create a test user associated with a particular application using the Graph API with the application access token." This links to the section "Autenticating as an Application" and describes this CURL script:

curl -F grant_type=client_credentials \
 -F client_id=your_app_id \
 -F client_secret=your_app_secret \
 https://graph.facebook.com/oauth/access_token

So far, so good. I ran this and get the following:

access_token=1182...18|nTI...r5Q

So now I want to POST this token to the graph api test user URL:

POST /1182...18/accounts/test-users?installed=true&permissions=read_stream&access_token=1182...18|nTI...r5Q  

When I do this (both using the Facebook PHP SDK and just typing it into the browser) I get:

{
    "error": {
      "type": "OAuthException",
      "message": "Invalid OAuth access token."
    }
}

So the questions are:

  • Why am I getting this error message?
  • Am I using the wrong access token (despite Facebook explicitly telling me to use this one?)
  • Do I need to parse the access token somehow?

    Thank you for your help.

  • share|improve this question

    2 Answers

    up vote 2 down vote accepted

    Here is some working code that will allow you to create a test user with the PHP SDK.

    share|improve this answer
    Thanks, I implemented something similar to this and it works. – Gobitron Jan 5 '11 at 19:38

    Ensure your access token is properly urlencoded when passing back to facebook.

    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.