1
FCMとAmazon SNSを使用して、プッシュ通知を切断してクライアントアプリケーションに送信しようとしています。トークン登録をサーバに送信しない
私は以下を実装しました。
String customPushData = "my custom data";
CreatePlatformEndpointRequest platformEndpointRequest = new CreatePlatformEndpointRequest();
platformEndpointRequest.setCustomUserData(customPushData);
platformEndpointRequest.setToken(token);
platformEndpointRequest.setPlatformApplicationArn(platformApplicationArn);
pushClient.setRegion(Region.getRegion(Regions.AP_NORTHEAST_1));
CreatePlatformEndpointResult result = pushClient.createPlatformEndpoint(platformEndpointRequest);
String endpointArn = result.getEndpointArn();
私はこれをデバッグしようとしました。私はconsole.aws.amazon.com/snsその後、何のトークンが登録されていないに自分のアプリケーションをチェックインすると、その後、
カーソルが
CreatePlatformEndpointResult result = pushClient.createPlatformEndpoint(platformEndpointRequest);
から移動しませんでした。
ここで私は間違っていますが、どうやってデータをsnsに送信して別のデバイスに戻すことができますか?
いずれのhepも非常に高く評価されます。