0
我正在調用Google FCM Api進行推送通知。這是我在JS文件中的代碼:在MobileFirstAdapter中調用Google FCM時獲取JSON_PARSER_ERROR 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;
但得到錯誤說法錯誤請求,JSON_PARSING_ERROR:在位置0
我使用MFP 7.1意外的字符(t)和使呼叫https://fcm.googleapis.com/fcm/send
有人請指導我。
你爲什麼這樣做時,MFP爲您提供了統一的API來發送推送通知? –
我需要從我的後端服務發送推送通知,這將從其他服務器調用。 – rumit
那麼哪個服務器實際上與FCM?MFP服務器或您的後端對話? –