Parse Push 通知的频道名称是否有限制?
Is there any restrictions for channel's name of Parse Push notification?
我的ParseAndroidSDK版本是1.8.0,我知道可以调用
订阅频道
ParsePush.subscribeInBackground("Ch1");
但是有很多频道名订阅失败(函数调用后没有任何反应)
例如,
ParsePush.subscribeInBackground("123");
ParsePush.subscribeInBackground("1ab");
ParsePush.subscribeInBackground("Ch 0 (.)");
Parse Push notification 的channel name 有限制还是bug?谢谢
回答您的问题 - 是。有效频道名称有限制。来自文档
The channel name must start with a letter and contain only letters,
numbers, dashes, and underscores.
我的ParseAndroidSDK版本是1.8.0,我知道可以调用
订阅频道ParsePush.subscribeInBackground("Ch1");
但是有很多频道名订阅失败(函数调用后没有任何反应)
例如,
ParsePush.subscribeInBackground("123");
ParsePush.subscribeInBackground("1ab");
ParsePush.subscribeInBackground("Ch 0 (.)");
Parse Push notification 的channel name 有限制还是bug?谢谢
回答您的问题 - 是。有效频道名称有限制。来自文档
The channel name must start with a letter and contain only letters, numbers, dashes, and underscores.