Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have developed a website that allows users to subscribe to a service using their Facebook credentials.

How do we create test Facebook accounts that can be used to execute end-user test cases for this feature?

share|improve this question
You can create test users at https://developers.facebook.com/apps/YOUR_APP_ID/roles – cpilko Jan 25 at 15:09
2  
To clarify - creating "fake" test accounts is supported by Facebook for the purpose of testing an application. The down votes on this post are slightly exaggerated... – Lix Jan 25 at 15:13

closed as off topic by Wooble, cpilko, H2CO3, Stony, MPelletier Jan 25 at 17:08

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

You can create test users via the Graph API. You shouldn't refer to them as "fake" users because that has some negative connotations; Facebook actively peruses and shut's down fake accounts. I believe what you are talking about though is accounts to test Facebook applications...

The documentation details how to create test users via the api -

https://graph.facebook.com/APP_ID/accounts/test-users?
  installed=true
  &name=FULL_NAME
  &locale=en_US
  &permissions=read_stream
  &method=post
  &access_token=APP_ACCESS_TOKEN

You'll need to substitute all your own data in the request and the response you'll get back should look something like this -

{ 
  "id": "1234...",  
  "access_token":"1234567..." , 
  "login_url":"https://www.facebook.com/platform/test_account..."
  "email": "example...@tfbnw.net",
  "password": "1234..."
}

You can then use that users credentials to test your applications authentication process and functionality.

In addition to creating test accounts via the api, you can also use the interface within the application's dashboard under the "Roles" section - https://developers.facebook.com/apps/APP_ID/roles

share|improve this answer

Had the test accounts set up with no problem. Finally found the parameter I was missing to get the accounts to interact with the website properly.

Cheers.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.