Questions tagged [facebook-test-users]

A test user is a special Facebook account, invisible to real accounts, which can be created within an app for the purpose of manual or automated testing of that app's Facebook integration.

75 questions
3
votes
0 answers

Facebook Graph Api - /me/friends returns empty with Test Users

I am creating a quick test application with the facebook javascript sdk. I want to get the list of friends that also use this app. Since the app is in development mode, I figured I needed to do this with test users. I have created two test users…
3
votes
2 answers

How to log in to facebook with test user from Android SDK

I want to test the game requests feature and therefore I use test users. I want to login to my Android app with a test user that I created. I been trying to use the AccessToken.setCurrentAccessToken method as…
Ilya Gazman
  • 31,250
  • 24
  • 137
  • 216
3
votes
1 answer

Facebook Open Graph follow action provokes an error when uses Open Grahp Test User as a profile

I'm developing a web application in php that uses CURL calls to Facebook Open Graph with an authorization token. I'm implementing calls to follow action and it runs fine with the test users profiles, but it provokes an error message when it uses…
3
votes
0 answers

Error: OAuthException code 1 during test user creation

Since 1 week max, i got this error when i try to create a test user. https://graph.facebook.com/APP_ID/accounts/test-users?installed=false&name=profilname&locale=en_US&permissions=read_stream&method=post&access_token=APP_TOKEN { "error": { …
3
votes
0 answers

Facebook requiring account verification for test users

As the documentation says "Note that a user does not have to be verified to be added as a tester to an app." All the users I've given a tester role on my sandbox application, the ones that doesn't have a verified account are presented with a message…
Gonzalingui
  • 1,357
  • 14
  • 18
3
votes
2 answers

Provide AppStore reviewers with Facebook test accounts

Our iOS app requires users to login using their Facebook account and we need to provide the AppStore reviewers with a test account(s). Can we take for granted that Apple have their own Facebook accounts that they use to test out apps that solely…
3
votes
4 answers

Unable to create groups using test users

I have an app with 4 test users which are all in each others' friend lists. I need to create a group with all of them. I clicked "Create a group" and I am asked for the name of the group and some members. When I type the name of the members, there…
3
votes
0 answers

Facebook Test User and iOS6 OS Integration

I'd like to use my FaceBook test users (which can be used in a browser and username/password are working correctly) in my iPhone Simulator and iPhone itself for trying to post from an application. If I try to register the FaceBook test account in…
A.Steinel
  • 176
  • 5
2
votes
0 answers

Adding Credits Testers via Graph API

I'm building an AIR application to manage Test Users a bit more efficiently. Part of this tool requires linking freshly made Test Users automatically to the Credit Tester of an application. Is there any ways I can use something similar to…
2
votes
0 answers

deleting test Facebook users - open graph still reports users

I saw there was a limit of 500 test users per application, so I figured I would write some code to delete them all periodically. (I create a new test user per automated test) What I've found is that facebook still reports the existence of the test…
Frank Schwieterman
  • 24,142
  • 15
  • 92
  • 130
2
votes
0 answers

connecting facebook test page to instagram account

i'm developing a website that enables user to see and manage his Instagram posts and comments.i want to get advanced permissions by app review of Facebook. i have created a Facebook app with some test users. then i created test page's for them. but…
2
votes
1 answer

Facebook Graph API test user missing email

For my Android unit tests, I use the Facebook Graph API to create test-users and then I log in Facebook with email and password. Since 2021-02-26, I don't get the test-user's email when I create one with the Facebook API. For example : POST…
2
votes
0 answers

How to send Facebook Test Lead to Webhook - but from Test User's Test Page

As i'm testing leads retrieval and integration - i'm wondering did anybody found solution on how to create leadgen ad on test page of test user account create lead from test ad So far i created leadgen_form on Test page via Graph API and test…
2
votes
1 answer

Can a Facebook test offer be created from a test page with 50+ likes from test users?

I'm trying to test Facebook offers. I figured if I create a test page (test user of my app creates a page).Then I use other test users of my app to get 50+ likes. I figured I should be able to create a test offer. My test page type is…
Linkfan03
  • 37
  • 5
2
votes
0 answers

testing facebook app with mocha

I'm developing a node.js app with Facebook login, I'm trying to do unit and integration tests with mocha. So in a function I have this code in order to login: exports.loginFacebook = function…