curl --header "Authorization: key=blahblahblah" --header Content-Type:"application/json" https://android.googleapis.com/gcm/send -d "{\"registration_ids\":[\"blahblahblah\"]}"
目前我可以通过上面的命令发送推送通知。为了向用户发送通知,我需要从用户那里获取注册 ID。如果我想向所有人(订阅该通知的人)推送通知怎么办?我如何获得他们的注册 ID?
*注意:我想要的是:当我在网站上的内容更新时,向所有人推送通知。
链接到我的项目:Github
我从这里学到了推送通知 + sw:Google Developer