我无法找到解决问题的方法。 当我使用像REPLY这样的内置动作时,一切都很好。我正在回复我的网址,我可以处理它。
但是,如果我用我自己的菜单项发送CUSTOM动作,那么该卡完全到达,但是当我选择一些选项时,没有任何反应。 我检查了日志,我确定没有“通知”事件即将到来。
我是否需要为自定义事件做些特别的事情?
这是我发送的卡片:
body = {
'creator': {
'displayName': 'creator:',
'id': 'creator_id',
},
'text': 'HELLO :)',
'title': 'This is the title:)',
'notification': {'level': 'DEFAULT'},
'menuItems': [ {
"action": "CUSTOM",
"id": "OPT_1",
'state' : 'DEFAULT',
"values": [{
"displayName": "OPT_1",
"iconUrl": [util.get_full_url(self, '/static/images/python.png')],
}]
},
{
"action": "CUSTOM",
"id": "OPT_2",
"values": [{
"displayName": "OPT_2",
"iconUrl": [util.get_full_url(self, '/static/images/python.png')],
}]
}
]
}
self.mirror_service.timeline().insert(body=body).execute()