I’m working on testing some code to invite a user to an event when they click a button. Presently I’m doing this with test users. I created two test users on the app I’m developing. One of them I used to create a facebook event. The other created a facebook tab for the app. I’m trying to pass the event id and the id of the second user in
event_id/invited/user_id
as a post, so the user gets invited. However, i get the following JSON response:
{
"error": {
"message": "(#200) ",
"type": "OAuthException",
"code": 200
}
}
Is this impossible to do with test users? Or is there something I’m missing?
The test users being friends was a pretty key factor when testing this out. Be sure to do that if you want to send invites around such via FB :).