我希望通过推送通知接收令牌事件,但我不希望收到特定unwanted_client_id
的推送通知。
这是我现在的代码:
body = {
'id': 'some_id',
'token': 'some_random_token',
'type': 'web_hook',
'address': 'https://my.address.com/some/endpoint',
'payload': 'true',
}
service.activities().watch(
applicationName='token',
userKey='all',
filters='client_id<>unwanted_client_id',
body=body
).execute()
我开始接收推送通知,但我也收到unwanted_client_id
的推送通知。
我使用activities().list()
对完全相同的过滤器进行了测试,并且它有效,即我没有获得unwanted_client_id
的事件。