这是我的一个信号用户标签。
{
"tags": {"games":["game1","game2"] }
}
使用Web API,我可以按照以下JSON格式向该用户发送消息
{
“app_id”: “#############”,
"filters": [
{"field": "tag", "key": "games", "relation": "=", "value": ["game1","game2"]}
],
"contents": {"en": "English Message"}
}
我的问题是我如何向用户发送消息,该消息属于如下所示的game1
{
“app_id”: “#############”,
"filters": [
{"field": "tag", "key": "games", "relation": "=", "value": ["game1"]}
],
"contents": {"en": "English Message"}
}