android – Parse:从app发送推送通知

前端之家收集整理的这篇文章主要介绍了android – Parse:从app发送推送通知前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何使用我的应用程序直接从我的 Android应用程序发送解析推送通知到evryone别人.是否有可能做到这一点?

解决方法

如果你想使用Parse,转到解析仪表板,那里你会看到push的设置,你会在那里找到这个客户端推送设置.
ParsePush push = new ParsePush();
String message = "Client message" + Integer.toString(i++);
push.setChannel("Channel Name");
push.setMessage(message);
push.sendInBackground();
原文链接:https://www.f2er.com/android/316671.html

猜你在找的Android相关文章