0

似乎在初始配置 POST 请求之后我无法更改任何属性(webhook 和功能),改变这些的方法是什么?这是一个临时错误吗?:)

{
    "webhook": "http://example.com/api/kik",
    "features": {} 
}

我得到了什么

{
  "webhook": "http://example.com/incoming",
  "features": {
    "receiveReadReceipts": false,
    "receiveIsTyping": false,
    "manuallySendReadReceipts": false,
    "receiveDeliveryReceipts": false
  }
}
4

1 回答 1

2

python 库有一个set_configuration函数,如果使用仅设置 webhook 的 Config 对象调用该函数,将设置 webhook。请参阅http://kik.readthedocs.org/en/latest/user.html#configuration,虽然现在这些文档中有一个错误,但 seconds 函数是set_configuration

如果您不使用该库,您可以告诉我您正在使用什么代码。清除您的机器人名称和 api-key

于 2016-04-06T16:00:52.840 回答