我想用ruby unirest请求下面的东西,但我不能这样做

时间:2017-06-03 11:32:40

标签: ruby rubygems unirest

这是请求

 POST /oauth/token HTTP/1.1
 Host: api.quizlet.com
 Authorization: Basic N0pIMzhUMjd6TTpOM3JYd3l2TU5OWlNGQWNBd0ozZ3lH
 Content-Type: application/x-www-form-urlencoded; charset=UTF-8
 grant_type=authorization_code&code=GENERATED_CODE

这是回复

{
    "access_token": "46a54395f3d1108feca56c7f6ca8dd3d",
    "token_type": "bearer",
    "expires_in": 3600,
    "scope": "read",
    "user_id": "ryu_nishida"
}

这是我的代码

 Unirest.post "http://api.quizlet.com/oauth/token", 
 headers:{ Authorization: "Basic 
 N0pIMzhUMjd6TTpOM3JYd3l2TU5OWlNGQWNBd0ozZ3lH"}, 
 grant_type=authorization_code&code=GENERATED_CODE

我的代码没有回复,但它没有任何错误。

1 个答案:

答案 0 :(得分:2)

您需要将响应对象保存在变量

response = Unirest.post("http://api.quizlet.com/oauth/token",
             auth:{:user=>"username", :password=>"password"})

然后你有获取细节的方法

response.code # Status code
response.headers # Response headers
response.body # Parsed body
response.raw_body # Unparsed body

阅读docs