如何使用One Signal REST API从我的ionic应用程序触发One Signal通知,我已经通过了医生,但我没有得到它

emeijp43  于 2023-10-14  发布在  Ionic
关注(0)|答案(2)|浏览(130)

如何使用一个信号从我的ionic应用程序触发一个信号通知。我已经通过了文件,但没有得到它。我也设置了服务和它的工作正常,但我只能从一个信号网站推送手动通知。我寻求动态触发通知从我的应用程序使用其余API提供的一个信号。这是到文档www.example.com的链接https://documentation.onesignal.com/reference#create-notification

ycggw6v2

ycggw6v21#

这听起来像你正在寻找我们的postNotification方法

rkue9o1l

rkue9o1l2#

您可以在唯一的PlayerID/SubscriptionID的帮助下,使用指向移动的的REST URL触发通知,

POST https://onesignal.com/api/v1/notifications
Authorization: Basic YOUR_API_KEY
Content-Type: application/json

{
  "app_id": "YOUR_APP_ID",
  "include_player_ids": ["PLAYER_ID"],
  "contents": {"en": "Notification Content"},
  "headings": {"en": "Notification Title"}
}

对于参考,您可以使用下面的 curl ,

curl --location 'https://onesignal.com/api/v1/notifications' \
--header 'Content-Type: application/json' \
--header 'Basic: **YOUR API KEY**' \
--data '{
  "app_id": "**YOUR APP ID**",
  "include_player_ids": ["PLAYERID/SUBSCRIPTIONID"],
  "contents": {"en": "Title"},
  "headings": {"en": "Description"}
}'

相关问题