我正在调用 Google FCM Api 进行推送通知。这是我在 JS 文件中的代码:
function sendNotificationToUser() {
var request={
path :'/fcm/send',
method: 'POST',
returnedContentType : 'text/plain',
headers: {
'Content-Type': ' application/json',
'Authorization': SERVER_KEY
},
parameters : {
'to': USER_AUTH_KEY,
'notification':JSON.stringify({
'title': 'Welcome',
'body':'Hi there'
})
};
var response = WL.Server.invokeHttp(request);
return response;
但是出现错误说 BadRequest, JSON_PARSING_ERROR: Unexpected character (t) at position 0.
我正在使用 MFP 7.1 并调用https://fcm.googleapis.com/fcm/send
有人请指导我。