2

我有一些 python 工具,我想将更新发送到 hipchat 房间。我在其他地方使用 shell 脚本执行此操作,所以我知道它在我们的环境中有效,但我似乎无法将令牌推送到 hipchat API。必须是简单的东西。

首先,这会正确验证并传递消息:

curl -d "room_id=xxx&from=DummyFrom&message=ThisIsATest&color=green" https://api.hipchat.com/v1/rooms/message?auth_token=yyy

但是当我尝试使用 python“请求”模块时,我被卡住了。

import requests
room_id_real="xxx"
auth_token_real="yyy"
payload={"room_id":room_id_real,"from":"DummyFrom","message":"ThisIsATest","color":"green"}
headerdata={"auth_token":auth_token_real,"format":"json"}
r=requests.post("https://api.hipchat.com/v1/rooms/message", params=payload, headers=headerdata)
print r.ok, r.status_code, r.text

这是我的错误信息:

False 401 {"error":{"code":401,"type":"Unauthorized","message":"Auth token not found. Please see: https:\/\/www.hipchat.com\/docs\/api\/auth"}}

基本上我似乎没有正确传递身份验证令牌。我怎样才能得到这个工作?

4

4 回答 4

4

如果有帮助,这里有一个有效的 V2 API 示例。我确实发现 V2 API 对正确获取请求的形式更加敏感。但是,符合 V2 API 可能更具前瞻性(尽管最初的问题似乎与 V1 有关)。

#!/usr/bin/env python
import json
from urllib2 import Request, urlopen

V2TOKEN = '--V2 API token goes here--'
ROOMID = --room-id-nr-goes-here--

# API V2, send message to room:
url = 'https://api.hipchat.com/v2/room/%d/notification' % ROOMID
message = "It's a<br><em>trap!</em>"
headers = {
    "content-type": "application/json",
    "authorization": "Bearer %s" % V2TOKEN}
datastr = json.dumps({
    'message': message,
    'color': 'yellow',
    'message_format': 'html',
    'notify': False})
request = Request(url, headers=headers, data=datastr)
uo = urlopen(request)
rawresponse = ''.join(uo)
uo.close()
assert uo.code == 204
于 2014-09-19T19:37:45.833 回答
3

另一个使用请求的基本示例:

import requests, json

amessage = 'Hello World!'
room = 'https://api.hipchat.com/v2/room/18REPLACE35/notification'
headers = {'Authorization':'Bearer UGetYourOwnAuthKey', 'Content-type':'application/json'}
requests.post(url = room, data = json.dumps({'message':amessage}), headers = headers)
于 2015-03-31T06:09:44.160 回答
1

正如 Ianzz 所说,尝试将其包含在 URL 查询字符串中。虽然笨重(你可能想要散列它!),但它确实有效。

另一个奇怪的怪癖是你通过 Hipchat 获得的令牌。今晚早些时候,我使用自己的个人代币遇到了无穷无尽的问题;它似乎对应于 API 的 v2 beta。如果您通过 Group Admin 进入并从那里获取令牌,它可能会有所帮助。

老问题是老问题。

于 2014-03-13T22:02:19.527 回答
-1

这是使用 HipChat API v2 接口的官方库列表 https://www.hipchat.com/docs/apiv2/libraries

于 2015-12-15T00:40:28.320 回答