gpt4 book ai didi

android - 单击 Fcm 通知时打开深层链接 url

转载 作者:行者123 更新时间:2023-12-03 14:37:46 24 4
gpt4 key购买 nike

我正在使用 Google 的 Fcm发送通知到我的安卓客户
我想使用 Deep Link url 打开特定屏幕,例如。 example://my.app/products这是使用 REST api 发送通知的端点

https://fcm.googleapis.com/fcm/send
Content-Type: application/json
Authorization: key={SERVER_KEY}

{
"to" : "{Firebase client token}",
"collapse_key" : "type_a",
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification"
"click_action": "example://my.app/products"
}
}
此请求向我指定的客户端发送通知,但未打开深层链接,单击推送时没有任何 react
有没有办法从 Fcm Push 打开 Deep Link ?

最佳答案

Fcm 文档 中未提及此功能但是 我自己尝试了一些测试并找到了解决方案:
我们需要放置链接,而不是 click_action:

https://fcm.googleapis.com/fcm/send
Content-Type: application/json
Authorization: key={SERVER_KEY}

{
"to" : "{Firebase client token}",
"collapse_key" : "type_a",
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification"
"link": "example://my.app/products" <<-- Here is the solution
}
}

关于android - 单击 Fcm 通知时打开深层链接 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63203360/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com