Remove facebook apprequests via api using c # sdk

I can read them all as:

m_api.GetAsync("/me/apprequests");

I can read spesific one like:

m_fb.GetAsync("/req number");

But I could not delete them ... how can I delete them using api call? Thank.

+3
source share
1 answer

try it

m_fb.Delete (requestId.ToString ());
+3
source

All Articles