gpt4 book ai didi

android - OneSignal postNotification 安卓

转载 作者:太空宇宙 更新时间:2023-11-03 13:49:34 31 4
gpt4 key购买 nike

我需要 postNotification在我的原生应用 android 中。

我有这段代码,但它不起作用:

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 安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36861544/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com