未收到GCM通知,应用程序处于后台,内容可用=1



我开发了一个Ionic 2应用程序,并在Android模拟器上进行了测试。

当应用程序处于后台并且通知没有标题、没有可用的消息和内容=1时,应将通知直接发送给应用程序通知处理程序。但这并没有发生。

我可以通过前台的应用程序接收通知。

如果我有标题和消息,我会在通知区收到通知。但我需要在静音模式下直接将通知发送到应用程序,而无需经过通知区域。

这是我发送推送通知的代码:

{
   "delay_while_idle": true,
   "priority": "high",
   "sound": "default",
   "color": "FFFF00",
   //payload   
   "data": {
       "content-available": "1",
       "some_var": "some_value",
       "ohter_var": "other_value",       
   }
}

我如何向我的Android应用程序发送无声通知?

Android GCM和FCM在应用程序后台也能工作。

为此,您需要在manifest with intent Filter中添加以下服务类。

<!-- [START gcm_listener] -->
        <service
            android:name=".gcm.GcmListener"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            </intent-filter>
        </service>
        <service
            android:name=".gcm.TokenRefreshService"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.android.gms.iid.InstanceID" />
            </intent-filter>
        </service>
        <service
            android:name=".gcm.RegistrationIntentService"
            android:exported="false" />
        <!-- [END gcm_listener] -->

public class GcmListener extends GcmListenerService {
}

public class TokenRefreshService extends InstanceIDListenerService {
    @Override
    public void onTokenRefresh() {
        super.onTokenRefresh();
        Intent intent = new Intent(this, RegistrationIntentService.class);
        startService(intent);
    }
}

获取代币:

public class RegistrationIntentService extends IntentService {
    // TODO: Rename actions, choose action names that describe tasks that this
    private String TAG = "RegistrationIntentService";
    public RegistrationIntentService() {
        super("RegistrationIntentService");
    }

    @Override
    protected void onHandleIntent(Intent intent) {
     InstanceID instanceID = InstanceID.getInstance(this);
        String token = instanceID.getToken("PRODUCT_ID",
                GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);
}
}

相关内容

  • 没有找到相关文章

最新更新