peter
peter

Reputation: 31

delete facebook apprequests via api with c# sdk

I can read all of them like:

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

I can read spesific one like:

m_fb.GetAsync("/req number");

But i wasnt able to delete them...how can i delete them via the api call? Thanks.

Upvotes: 3

Views: 589

Answers (1)

Costa
Costa

Reputation: 143

try this

m_fb.Delete(requestId.ToString());

Upvotes: 3

Related Questions