我正在制作Android Push Service。
我注册了安全配置文件,并添加FCM服务器密钥和我的密钥库文件
ionic security profiles list
name | tag | android | ios
skout90| skout90 | V |
,我在下面要求
curl -X POST -H "Authorization: Bearer my_api_key" -H "Content-Type:
application/json" -d '{
"tokens": ["my_device_key"],
"profile": "skout90",
"notification": {
"message": "Alert!"
}
}' "https://api.ionic.io/push/notifications"`
但是
我得到了响应
{
"meta": {
"request_id": "1b855552-195e-4dd3-cd36-ae49b19490a4",
"status": 400,
"version": "2.0.0-beta.0"
},
"error": {
"type": "BadRequest",
"link": null,
"message": "Security Profile 'skout90' not found."
}
}
我找不到问题。
我必须做什么?
请帮助我...
我自己解决了这个问题。
-H "Authorization: Bearer my_api_key"
i输入错误my_api_key。