2

我正在尝试设置我的 android 应用程序以通过 Parse 发送推送通知。

构建.gradle

 compile 'com.parse:parse-android:1.13.0'

应用程序.java

 //in onCreate
 Parse.initialize(this, "appId", "clientKey");
 ParseInstallation.getCurrentInstallation().saveInBackground();

AndroidManifest.xml

 <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>

<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="MY_APP_ID" />
      </intent-filter>
</receiver>

使用这些更改启动我的应用程序后,我可以看到 Parse 仪表板上正在创建一个安装对象。

现在,当我尝试通过仪表板发送推送并使用 Android 平台创建受众时,它会显示“此活动的收件人数量不能为空”。

我错过了什么?

编辑 1:我可以通过 REST api 发送推送。仍然无法通过 Web 控制台发送推送。

4

1 回答 1

0

我已将此问题提交给 Facebook 开发者页面。这是我从 Facebook 工程团队收到的回复:

这是新仪表板中收件人数量较少的已知问题。不幸的是,工程团队不打算在新仪表板中解决这个错误。请使用旧仪表板发送这些推送通知。

于 2016-06-14T11:24:26.577 回答