4

我目前正在尝试编写一个基本客户端来监听来自(企业)github 的事件,并相应地进行 API 调用。

我遇到的问题是我无法配置 PubSubHubbub 客户端。我以为这是我正在使用的客户端/身份验证,但我现在无法从文档中获得基本调用!

为了弄清楚我做错了什么,我正在向我的普通 github 帐户发出 curl 请求:

curl -u "joepym" -i \
 https://api.github.com/hub \
 -F "hub.mode=subscribe" \
 -F "hub.topic=http://github.com/JoePym/faraday/events/push" \
 -F "hub.callback=*callbackurl*"

我要回来了

HTTP/1.1 100 Continue

HTTP/1.1 422 Unprocessable Entity
Server: GitHub.com
Date: Wed, 08 May 2013 18:13:24 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Status: 422 Unprocessable Entity
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4989
X-GitHub-Media-Type: github.beta
X-Content-Type-Options: nosniff
Content-Length: 38

{
  "message": "Invalid event: nil"
}

当我尝试使用企业凭据调用我的企业 github 帐户时,我的主要客户也会收到此无效事件消息。

有没有人遇到过这个?

4

1 回答 1

1

尝试使用https://github.com/JoePym/faraday/events/push作为您的 hub.topic。请注意,我们现在使用的是“https”。

于 2013-05-08T19:27:00.710 回答