hipchat oauth令牌内部服务器错误

时间:2017-06-15 11:46:48

标签: oauth token hipchat

我关注hipchat网站并尝试获取附加令牌 https://developer.atlassian.com/hipchat/guide/hipchat-rest-api/api-access-tokens?_ga=2.94621780.975509804.1497491262-871504840.1479901346#APIaccesstokens-Add-ongeneratedtokens

我有以下代码:

import requests

secret = 'hipchat_secret'
headers = {'Content-Type': 'application/x-www-form-urlencoded',
           'Authorization': 'Basic {}'.format(secret)}

url = 'https://api.hipchat.com/v2/oauth/token?grant_type=client_credentials&scope=send_notification+admin_room'

res = requests.post(url, headers=headers)

但是它给了我一个500内部服务器错误。我的代码出了什么问题?

1 个答案:

答案 0 :(得分:0)

错误是我使用了v1令牌。

切换到v2

时效果很好