2

According to Facebook Devlopers: Test Users, I can list the test users of my facebook app by making a request to https://graph.facebook.com/APP_ID/accounts/test-users?access_token=APP_ACCESS_TOKEN. The response includes a valid user access token for each user.

How can I get a valid user access token for a specific test user without downloading the whole list of test users?

Oswald
  • 31,254
  • 3
  • 43
  • 68

1 Answers1

0

Test users should be able to be authenticated with your application in the same way as an other user. So use the Authentication flows while logged in for a specific test user.

Other than that there is no way to call one by one without parsing with code.

phwd
  • 19,975
  • 5
  • 50
  • 78
  • But is there a way to get a token ? I'd like to use it in Graph API Explorer. – expert Jul 16 '13 at 23:20
  • test user's token is returned by the test users api. some libraries running around facebook apis also do that, for instance, http://code.google.com/p/facebook-test-java-api/ returns access token for the FacebookTestUser object – Eljah Jul 28 '13 at 19:36