I’d like to programmatically add requests (apprequests) to a Facebook test user so I can test the code in my application that handles Facebook requests. How can I do that? I’m using C#, and I’m hoping for an answer in the form of an HTTP request. I’m just not certain that this is possible, and if it’s possible, what’s the API?
I’d like to programmatically add requests (apprequests) to a Facebook test user so I
Share
You do it the same way you would for any user, just with a target user id of the test user. There are code examples on the app request page. If you want to do it server side, just post to the /me/apprequests endpoint with message and to parameters (i don’t know c# so i cant write it for you)
Abby