gpt4 book ai didi

未收到在 Back4App 上使用 Parse 的 Android 推送通知

转载 作者:行者123 更新时间:2023-11-30 00:59:38 26 4
gpt4 key购买 nike

我已按照以下所有说明在 Android 中为应用配置推送通知: https://github.com/ParsePlatform/Parse-Server/wiki/Push-Configuring-Clients https://parseplatform.github.io/docs/android/guide/#push-notifications

可是不管我怎么操作,我用的手机好像根本收不到任何推送通知。

相同的应用程序配置为在 iOS 上接收通知并且运行完美。

这些是 list 中的相关位:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xxy.xxy">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />

<permission
android:name="com.xxy.xxy.permission.C2D_MESSAGE"
android:protectionLevel="signature" />

<uses-permission android:name="com.xxy.xxy.permission.C2D_MESSAGE" />


<application
android:name="com.xxy.xxy.MiXXYApplication"
android:allowBackup="true"
android:icon="@drawable/logoapp"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<service android:name="com.parse.PushService" />

<receiver
android:name="com.parse.ParsePushBroadcastReceiver"
android:exported="false">
<intent-filter>
<action android:name="com.parse.push.intent.RECEIVE" />
<action android:name="com.parse.push.intent.DELETE" />
<action android:name="com.parse.push.intent.OPEN" />
</intent-filter>
</receiver>
<receiver
android:name="com.parse.GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />

<category android:name="com.xxy.xxy" />
</intent-filter>
</receiver>

<meta-data
android:name="com.parse.push.gcm_sender_id"
android:value="id:123456789012" />
</application>

这是 Application 类(AppID 和 Client Key 替换为 Back4App 给出的当前值):

public class MiXXYApplication extends Application {

@Override
public void onCreate() {
super.onCreate();

Parse.setLogLevel(Parse.LOG_LEVEL_VERBOSE);
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.applicationId("back4App_AppID")
.clientKey("back4App_ClientKey")
.server("https://parseapi.back4app.com/")
.build()
);

}
}

这些是我调用来注册安装的方法(我不能在 Application 类上这样做,因为我需要 userId,登录后)

public void enablePush(final String userId) {
ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("GCMSenderId", "123456789012");
installation.put("userId", userId);
installation.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.i("push", "ok");
subscribe("");
subscribe(userId);
} else {
Log.i("push", "nok");
e.printStackTrace();
}
}
});
}


public void subscribe(String channel){
ParsePush.subscribeInBackground(channel, new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.i("Push", "subscribed");
} else {
Log.i("push", "nok");
e.printStackTrace();
}
}
});
}

这是 Parse DB 上的安装注册表:

ObjectID: l1tkO3YM2r
GCMSenderID: 123456789012
deviceToken: APA91bHeKnj...
localeIdentifier: en-US
badge: (undefined)
parseVersion: 1.13.1
ACL: Public Read + Write
appIdentifier: com.xxy.xxy
appName: appName
deviceType: android
channels: ["","CyTPw5xc4r"]
pushType: gcm
installationId: 8cf9c606-5a0e...
userId: CyTPw5xc4r

在谷歌开发者控制台中,项目编号是 123456789012,我创建了一个 API key 并在 Back4App 仪表板的 Android 推送通知设置中添加了 API key + 项目编号。

详细模式下的 logcat 显示如下:

09-21 09:29:19.863 10721-10721/com.xxy.xxy V/com.parse.ManifestInfo: Using gcm for push.
09-21 09:29:19.884 10721-10885/com.xxy.xxy V/com.parse.CachedCurrentInstallationController: Successfully deserialized Installation object
09-21 09:29:19.899 10721-10886/com.xxy.xxy V/com.parse.GcmRegistrar: Sending GCM registration intent
09-21 09:29:29.782 10721-11340/com.xxy.xxy V/com.parse.GcmRegistrar: Received deviceToken <APA91bHeKnj...> from GCM.

据我所知,一切顺利,但我的手机没有收到任何通知。

我的设置有问题吗?谢谢!

最佳答案

解决了!

问题是,您应该从https://developers.google.com/mobile/add 获取它,而不是像所有指南所说的那样获取Api key 。 .

它生成了另一个 API key 并激活了服务,然后,它就开始工作了。

关于未收到在 Back4App 上使用 Parse 的 Android 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39610971/

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