我的原生应用程序 android 中需要 postNotification。
我有这个代码,但它不起作用:
try {
OneSignal.postNotification(new JSONObject("{'contents': {'en':'Test Message'}, 'include_player_ids': ['" + userId + "']}"), null);
} catch (JSONException e) {
e.printStackTrace();
}
最佳答案
您能否确保 userId
中的值是您帐户上的有效 OneSignal ID 并且已订阅?
您还可以改用以下代码添加 logcat 日志记录来调试问题。
try {
OneSignal.postNotification(new JSONObject("{'contents': {'en':'Test Message'}, 'include_player_ids': ['" + "userId" + "']}"),
new OneSignal.PostNotificationResponseHandler() {
@Override
public void onSuccess(JSONObject response) {
Log.i("OneSignalExample", "postNotification Success: " + response.toString());
}
@Override
public void onFailure(JSONObject response) {
Log.e("OneSignalExample", "postNotification Failure: " + response.toString());
}
});
} catch (JSONException e) {
e.printStackTrace();
}
关于android - OneSignal postNotification Android,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36861544/