onesignal API,邮递员:找不到 app_id

onesignal API, Postman: app_id cannot be found

在尝试按照 onesignal 文档使用邮递员向 onesignal 发送 POST 请求以发送通知时,我在尝试发送时收到以下错误: "app_id not found. You may be missing a Content-Type: application/json header."

我确实有正确的 content-type header:

此外,我相信我的 JSON 在句法上是正确的:

{
    "included_segments": [
        "Subscribed Users"
    ],
    "App_id": "{Removed for obvious reasons}",
    "contents": {
        "en": "This is a message, sent from postman using the onesignal API"
    },
    "headings": {
        "en": "This is a heading"
    },
    "subtitle": {
        "en": "This is a subtitle, it should only appear on iOS devices"
    },
    "ios_badgeType": "SetTo",
    "ios_badgeCount": 1,
    "priority": 10
}

不知道从这里到哪里去。

此处的文档:https://documentation.onesignal.com/docs/using-postman

非常感谢任何帮助!

谢谢!

我解决了这个问题,并且正在为将来的人们添加我的解决方案。 在我消息的 json 正文中,我有“App_id”,它想要“app_id”。改变 a 的大小写使其工作。