Python で Kik ボットを作成しようとしています
私は Python と REST に精通しています。私はドキュメントを見てきました:
まず、次のものが必要です。
requests.post(
'https://api.kik.com/v1/config',
auth=('<username>', '<api_key>'),
headers={
'Content-Type': 'application/json'
},
data=json.dumps({
'webhook': 'https://example.com/incoming',
'features': {
'receiveReadReceipts': False,
'receiveIsTyping': False,
'manuallySendReadReceipts': False,
'receiveDeliveryReceipts': False
}
})
)
しかし、彼らは「webhook」や、このコードが実際に何を意味するのかを教えてくれませんか?
構成を設定するにはどうすればよいですか? 「ユーザー名」には何を入力すればよいですか? 自分のユーザー名?