如何获取与 Kik 的聊天 ID Api
How to get chat id with Kik Api
我已经在 Python 3.5 中使用 Kik Api 创建了代码,但是当我试图获取聊天 ID 时我遇到了问题。我已经搜索过,但我不知道如何使用 api 来查找要向其发送消息的聊天 ID。你如何获得 api 的聊天 ID?我的代码在这里:http://pastebin.com/LP8ahhhd
如果我没记错的话,你发布的代码里面有一个 chatID 字段?您需要使用它来将消息发送回同一对话。有关详细信息,请参阅此处:https://dev.kik.com/#/docs/messaging#sending-messages
当您收到消息时,它看起来像这样
{
"messages": [
{
"chatId": "0ee6d46753bfa6ac2f089149959363f3f59ae62b10cba89cc426490ce38ea92d",
"id": "0115efde-e54b-43d5-873a-5fef7adc69fd",
"type": "text",
"from": "laura",
"participants": ["laura"],
"body": "omg r u real?",
"timestamp": 1439576628405,
"readReceiptRequested": true,
"mention": null
},
{
"chatId": "0ee6d46753bfa6ac2f089149959363f3f59ae62b10cba89cc426490ce38ea92d",
"id": "74ded818-1eb7-4266-91bc-c301c2f41fe3",
"type": "picture",
"from": "aleem",
"participants": ["aleem"],
"picUrl": "http://example.kik.com/apicture.jpg",
"timestamp": 1439576628405,
"readReceiptRequested": true,
"mention": null
}
]
}
您可以从您收到的消息chatId
中获取适当的chatId
我已经在 Python 3.5 中使用 Kik Api 创建了代码,但是当我试图获取聊天 ID 时我遇到了问题。我已经搜索过,但我不知道如何使用 api 来查找要向其发送消息的聊天 ID。你如何获得 api 的聊天 ID?我的代码在这里:http://pastebin.com/LP8ahhhd
如果我没记错的话,你发布的代码里面有一个 chatID 字段?您需要使用它来将消息发送回同一对话。有关详细信息,请参阅此处:https://dev.kik.com/#/docs/messaging#sending-messages
当您收到消息时,它看起来像这样
{
"messages": [
{
"chatId": "0ee6d46753bfa6ac2f089149959363f3f59ae62b10cba89cc426490ce38ea92d",
"id": "0115efde-e54b-43d5-873a-5fef7adc69fd",
"type": "text",
"from": "laura",
"participants": ["laura"],
"body": "omg r u real?",
"timestamp": 1439576628405,
"readReceiptRequested": true,
"mention": null
},
{
"chatId": "0ee6d46753bfa6ac2f089149959363f3f59ae62b10cba89cc426490ce38ea92d",
"id": "74ded818-1eb7-4266-91bc-c301c2f41fe3",
"type": "picture",
"from": "aleem",
"participants": ["aleem"],
"picUrl": "http://example.kik.com/apicture.jpg",
"timestamp": 1439576628405,
"readReceiptRequested": true,
"mention": null
}
]
}
您可以从您收到的消息chatId
中获取适当的chatId