作为测试版的一部分,我已经获得了对某个服务的 REST API 访问权限。有人告诉我授权是通过 OAuth2 进行的。
我得到以下信息:
- ID
- 秘密
- 地点
我还在 Ruby 中获得了一个代码示例:
client = OAuth2::Client.new(key, secret, :site => site)
token = client.password.get_token('your_email@mail.com', 'your_password')
access_token = OAuth2::AccessToken.new(client, token)
JSON.parse access_token.get("/v1/users/me").body rescue {}
我试图用oauth2
包在python中实现这个相同的片段,但没有成功:
consumer = oauth2.Consumer(key=self._client_id,
secret=self._client_secret)
request_token_url = "api.theservice.com/"
token = oauth2.Token(key=self._email, secret=self._password)
client = oauth2.Client(consumer, token)
resp, content = client.request(request_token_url, "GET")
pprint.pprint(resp)
pprint.pprint(content)
resp, content = client.request(request_token_url + 'v1/users/me', "GET")
pprint.pprint(resp)
pprint.pprint(content)
第二个响应包含以下内容:
'www-authenticate': 'Bearer realm="Doorkeeper", error="invalid_token", '
'error_description="The access token is invalid"',
我还尝试创建一个oauth2.Client
没有令牌的对象,并检查第一个响应是否为access_token
,但没有任何结果。
在这里进行身份验证的正确方法是什么?