在 android 上解析通知不起作用

Posted

技术标签:

【中文标题】在 android 上解析通知不起作用【英文标题】:Parse notifications on android won't work 【发布时间】:2015-05-28 12:06:24 【问题描述】:

我正在尝试在 android 上设置 Parse 推送通知一段时间。 我遵循了不同的教程,并尝试从他们的网络平台发送通知,但似乎没有任何效果。这是我到目前为止所尝试的。

这是我的 Application 类的 onCreate 方法

@Override
    public void onCreate() 
        super.onCreate();
        Log.i("PushNotifications","PARSE initialize");

        Parse.initialize(this, "******************************", "*****************************");
        ParseInstallation.getCurrentInstallation().saveInBackground();

        ParsePush.subscribeInBackground("", new SaveCallback() 
            @Override
            public void done(ParseException e) 
                if (e == null) 
                    Log.i("PushNotifications","com.parse.push" + " successfully subscribed to the broadcast channel.");
                 else 
                    Log.i("PushNotifications","com.parse.push" + " failed to subscribe for push");
                
            
        );

    

这调用成功了,我得到了日志

已成功订阅广播频道。

这里还有我的清单文件的一些相关内容:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<permission android:name="com.my.app.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.my.app.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />

<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />


<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:name=".App"
    android:theme="@style/AppTheme">

    <activity
        android:name=".activities.MainActivity"
        android:launchMode="standard"
        android:screenOrientation="sensorPortrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <meta-data android:name="com.parse.push.gcm_sender_id" android:value="id:123456789" />
    <meta-data android:name="com.parse.push.notification_icon" android:resource="@drawable/ic_launcher"/>

    <service android:name="com.parse.PushService" />
    <receiver android:name="com.parse.ParseBroadcastReceiver">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.USER_PRESENT" />
        </intent-filter>
    </receiver>
    <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>
    <!--com.parse.GcmBroadcastReceiver"-->
    <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.my.app" />
        </intent-filter>
    </receiver>

</application>

当我尝试从 Parse 网站发送推送时,没有任何反应。

由于这不起作用,我尝试实现自己的 GcmBroadcastReceiver 并在清单中更改它。

<receiver android:name=".receivers.MyCustomReceiver"
            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.my.app" />
            </intent-filter>
</receiver>

public class MyCustomReceiver extends BroadcastReceiver 
    @Override
    public void onReceive(Context context, Intent intent) 
        Log.i("PushNotifications","MyCustomReceiver");
    

没有成功。

然后我也尝试创建自己的 ParsePushBroadcastReceiver(通过从 ParsePushBroadcastReceiver 继承)。

<receiver android:name=".receivers.CustomParseReceiver"
            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>

还有

public class CustomParseReceiver extends ParsePushBroadcastReceiver 

   @Override
    protected Notification getNotification(Context context, Intent intent) 
        Log.i("PushNotifications","PARSE getNotification");
        return null;
    

    @Override
    protected void onPushOpen(Context context, Intent intent) 
        Log.i("PushNotifications","PARSE onPushOpen");
    

    @Override
    protected void onPushReceive(Context context, Intent intent) 
        Log.i("PushNotifications","PARSE onPushReceive");        
    

    private JSONObject getDataFromIntent(Intent intent) 
        Log.i("PushNotifications","PARSE getDataFromIntent");            
    


它也不起作用。

问题是.. 当我创建自己的 GCM BroadcastReceiver 并从自己的服务器发送通知(使用一些小的 php 脚本)时,通知已成功接收。

我真的很想知道我的客户端解析通知系统的实现有什么问题。

关于问题可能来自哪里的任何提示?

【问题讨论】:

在广播接收器上尝试android:exported="true" 它会抛出 SecurityException:为了防止外部篡改您的应用程序的通知,所有注册处理以下操作的接收者必须将其导出属性设置为 false:com.parse.push.intent.RECEIVE, com .parse.push.intent.OPEN,com.parse.push.intent.DELETE 您的代码看起来不错。我认为你应该检查拼写错误。我使用 Parse 并卡住了 6 个小时,只是为了找出拼写错误“Player”“Players”。 请更改CustomParseReceiver目录并将其添加到MainActivity包目录中,添加后在manifest中进行更新。 Alex,下面这行可能是导致问题的原因。您不需要定义发件人 ID。删除它应该可以解决您的问题 【参考方案1】:

我在这方面的 2 美分(希望这会有所帮助):

我有一个类似的问题,我解决了(解释Here),所以这可能是问题,如果不是,请查看我的文件,快速浏览它们似乎与您的有一些细微差别,他们工作,所以值得一看:

清单部分:

   <!-- for parse pushes -->
    <service android:name="com.parse.PushService" />

    <receiver android:name="com.parse.ParseBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.USER_PRESENT" />
        </intent-filter>
    </receiver>
    <receiver
            android:name="com.MyStuff.stuff.utils.MyPushReceiver"
            android:exported="false" >
        <intent-filter>
            <action android:name="com.parse.push.intent.RECEIVE" />
            <action android:name="com.parse.push.intent.OPEN" />
            <action android:name="com.parse.push.intent.DELETE" />
        </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.MyStuff.stuff" />
        </intent-filter>
    </receiver>
    <meta-data
            android:name="com.parse.push.notification_icon"
            android:resource="@drawable/ic_launcher" />

我实现了自己的 ParsePushBroadcastReceiver:

public class MyPushReceiver extends ParsePushBroadcastReceiver

    @Override
    protected void onPushOpen(Context context, Intent intent)
    
     //bla bla...
    

    @Override
    protected void onPushReceive(Context context, Intent intent)
    
     // bla bla...
    

    @Override
    protected Notification getNotification(Context context, Intent intent)
    
        Notification notification = super.getNotification(context, intent);
     // do some stuff with it..
    


和我的应用程序类:

public class MyApplication extends Application


    private static final String CKey = "***********";
    private static final String AId = "************";

    @Override
    public void onCreate()
    
        super.onCreate();
        Parse.initialize(this, AId, CKey);

        //initialized some stuff..

        ParsePush.subscribeInBackground("", new SaveCallback()
        
            @Override
            public void done(ParseException e)
            
                if (null == e)
                
                    ParseInstallation install = ParseInstallation.getCurrentInstallation();
                    String token = install.getString("deviceToken");
                   //do some stuff with it...
                
            
        );
        ParseInstallation.getCurrentInstallation().saveInBackground();
        //some more stuff
    

希望它能让你走上正确的道路!

【讨论】:

感谢您的回答汤米。我复制粘贴了你的代码,并用我的替换了包,不幸的是它没有解决这个问题。关于您从 ParseInstallation 对象获得的令牌,它是否与我使用 GoogleCloudMessaging.getInstance(context).register() 获得的 GCM 令牌相同? AFAIK 是的,这是来自解析文档:'deviceToken:Apple 生成的用于 ios 设备的令牌,或 GCM 用于跟踪注册 ID 的令牌(只读)',但我会在他们的文档中阅读更多关于它的信息:)【参考方案2】:

首先:您是否从项目设置中启用了推送通知设置

我遇到了同样的问题,最后我删除了我的项目并在 Parse 中构建了一个新项目,然后问题就解决了,没有做任何事情!!!!为什么 ??我不知道...

别忘了获取最新的 Parse SDK,现在是 Parse-1.9.2.jar

【讨论】:

以上是关于在 android 上解析通知不起作用的主要内容,如果未能解决你的问题,请参考以下文章

Android:使用 ParsePushBroadcastReceiver 解析推送通知不起作用

Android 解析推送通知和新 GCM 生成错误的设备令牌并解析推送通知不起作用

Android Parse 推送通知不起作用 - 过时的设备

android firebase后台通知仅在vivo设备上不起作用

Android ICS 上的 GCM 通知不起作用

Android GCM推送通知不起作用