使用curl通过firebase云消息发送数据推送通知

问题描述 投票:0回答:1

我正在尝试仅发送数据推送通知,但我在找到授权 kye 时遇到问题,而令牌女巫是消息 json。对于从哪里获取此值,我从 firebase 控制台搜索并尝试所有内容。有另一种方法仅发送数据推送通知。我的请求是否正确。谢谢。

  curl -X POST https://fcm.googleapis.com/v1/projects/projectID/messages:send  -H    "Application/json" -H "Content-type: application/json" -H "Authorization: key={For where to get the key}" -d '{"message":"token":"{where to get token}",{"data"{"customData":"2dfs2"}}}'

{
  "error": {
    "code": 401,
    "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
    "status": "UNAUTHENTICATED",
    "details": [
      {
        "@type": "type.googleapis.com/google.rpc.ErrorInfo",
        "reason": "CREDENTIALS_MISSING",
        "domain": "googleapis.com",
        "metadata": {
          "service": "fcm.googleapis.com",
          "method": "google.firebase.fcm.v1.FcmService.SendMessage"
        }
      }
    ]
  }
}
firebase curl firebase-cloud-messaging
1个回答
-3
投票

最好使用传统模式。 v1 模式需要访问令牌。

如何在 Firebase FCM 中启用旧模式

注意:此方法在 2023 年之后不起作用。

© www.soinside.com 2019 - 2024. All rights reserved.