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.

From facebook graph api docs this is curl request i need to make. From console its working. Now I want to move this post in delayed job. How can I do this:

 curl -F 'access_token=xxxxxxxxx' \
  -F 'photo=http://xxxxxx.com/photos/13' \
    'https://graph.facebook.com/me/my_app_namespace:upload'

PS: I have token etc everything. I just want to code this curl request in ruby.

share|improve this question

2 Answers

up vote 1 down vote accepted

For quick and dirty, just send the command to the shell with tics or system.

For a more elegant and efficient (having native bindings) solution, use curb Ruby gem.

Curb (probably CUrl-RuBy or something) provides Ruby-language bindings for the libcurl(3), a fully-featured client-side URL transfer library. cURL and libcurl live at http://curl.haxx.se/ .

share|improve this answer

Net::HTTP should be all you need for a simple request like this

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.