使用 curl 以下命令是正确的,并且 Facebook API 会回复预期的响应:
curl -F 'access_token=TOKEN' -F 'batch=[{"method":"GET", "relative_url":"facebook"},{"method":"GET", "relative_url":"youtube"}] ' https://graph.facebook.com
我想将其转换为 Ruby,但一直在努力寻找正确的语法。我尝试了以下变体,但没有运气:
uri = URI.parse('https://graph.facebook.com')
res = Net::HTTP.post_form(uri, 'access_token' => 'TOKEN', 'batch' => "[{'method':'GET', 'relative_url':'facebook'}]")
你能帮我吗?