Method: Facebooker::Service#post_multipart_form
- Defined in:
- lib/facebooker/service.rb
#post_multipart_form(url, params) ⇒ Object
47 48 49 50 51 52 53 |
# File 'lib/facebooker/service.rb', line 47 def post_multipart_form(url,params) if Facebooker.use_curl? post_form_with_curl(url,params,true) else post_multipart_form_with_net_http(url,params) end end |