Huawei Push Kit API - 从 rest Api 获取 Push Id

Huawei Push Kit API - get Push Id from rest Api

我正在尝试通过带 Rest 的 HMS 推送向我的 android 应用程序发送通知 api。

系统运行正常,但我找不到 api 来查找 Push Id(令牌)。

{
    "validate_only": false,
    "message": {
        "notification": {
            "title": "Notifica simpatica",
            "body": "Io sono il body della notifica simpatica",
            "notify_icon": "https://res.vmallres.com/pimages//common/config/logo/SXppnESYv4K11DBxDFc2.png"
        },
        "data": "{'param1':'value1','param2':'value2'}",
        "android": {
            "collapse_key": -1,
            "urgency": "NORMAL",
            "category": "PLAY_VOICE",
            "ttl": "1448s",
            "fast_app_target": 1,
            "notification": {
                "click_action": {
                    "type": 1,
                    "intent": ""
                }
            }
        },
        "token": [
            "I NEED THIS"
        ]
    }
}

我已阅读有关推送订阅的信息 api 以获取它,但两天后我什么也没找到:(

请 帮我! 谢谢!

只能从设备接收 PushToken。在设备上,您应该执行接收它的方法,然后将此 PushToken 发送到您的后端。

mohax的回答是正确的。我想补充一点:

pushtoken是客户端集成Push SDK后,使用SDK提供的API获取的。获取pushtoken后,需要发送给服务器

详情请参考此Docs.