Guest User

Untitled

a guest
Apr 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. url : '/jsonp.php',
  2. jsonp : 'callback',
  3. data : {"json" : DataJson},
  4. type : 'GET',
  5. dataType : "jsonp",
  6.  
  7. uri = URI("example.com/jsonp.php?callback=a")
  8. params = {"json" => formDataJson}
  9. uri.query = URI.encode_www_form(params)
  10. res = Net::HTTP.get_response(uri)
  11. h = JSON.parse(res.body)
Add Comment
Please, Sign In to add comment