我正在使用Google的firebase用于网络应用程序(桌面)进行推送通知。我已经实施了Google提供的代码,可以使用我的firebase凭据在客户端计算机上生成令牌。
问题是,当我使用chrome的 ARC客户端发送请求时,我会收到通知弹出窗口。但是当我尝试在PHP中使用CURL
发送请求时,我收到一条成功消息,消息显示在我的localhost / index.html上(用于生成令牌和管理推送通知[由Google firebase提供] ])。这是显示的消息。
收到消息:
{
"from": "565634123456",
"collapse_key": "do_not_collapse",
"notification": {
"title": "Test title",
"body": "Test content",
"icon": "firebase-logo.png",
"click_action": "http://localhost/index.html"
}
}
我想要显示通知弹出窗口,而不是要在我的index.html
上显示成功的消息。有人可以在这里指导吗?