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?
|
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? |
||||
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.
|
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 -
You'll need to substitute all your own data in the request and the response you'll get back should look something like this -
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 - |
|||
|
|
|
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. |
|||
|
|
https://developers.facebook.com/apps/YOUR_APP_ID/roles– cpilko Jan 25 at 15:09