在我的应用程序中,我使用MobileFirst Platform推送通知,
MFPPush.registerDevice(
function(successResponse) {
alert("Successfully registered");
},
function(failureResponse) {
alert("Failed to register"+failureResponse);
}
);
我收到以下错误,
"注册失败 com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushException :响应:状态= 400,文本:"无效的请求正文JSON映射 失败",错误消息:错误请求"
答案 0 :(得分:0)
您是否创建了一个范围" push.mobileclient" ?如果没有,请到安全并创建以上范围。之后,在WLAuthorizationManager.obtainAccessToken("push.mobileclient").then()
。