Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple problem. I want to delete all app request sent via my Facebook application. Facebook documentation gives following code to do that:

DELETE https://graph.facebook.com/[<request_id>_<user_id>]?access_token=[USER or APP ACCESS TOKEN]

My problem is how to make HTTP DELETE request in my rails application? I am using following code to make HTTP GET request:

client = HTTPClient.new
@data = client.get_content(URI.parse(
  URI.encode("https://graph.facebook.com/RequestID?access_token=AccessToken")
))
share|improve this question

2 Answers

up vote 1 down vote accepted

Have a look at HTTPClient#delete method. I believe that's all you need. That should be smth like

client = HTTPClient.new
url = "https://graph.facebook.com/#{request_id}?access_token=#{access_token}"
data = client.delete url

Btw, why do you need that URI.parse and URI.encode stuff in you example?

And as you're dealing with Facebook I'd suggest looking at rest-graph gem. It's a pretty good tool for dealing with Facebook Graph API.

share|improve this answer

If the above doesn't work you can also GET the url, but specify the method as delete:

"https://graph.facebook.com/[<req id>]?access_token=[<access_token>]&method=delete"

This works for GET, POST, and DELETE.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.