サーバーから GCM サーバーにメッセージを送信しようとすると、java.net.HttpRetryException 例外が発生します。
try {
multiResult = sender.send(message, devices, RETRY_COUNT);
} catch(IOException e) {
logger.error("{0}\t- ANDROID : IOException occured during sending message: {1}", e.getMessage());
}
デバイスを正常に登録しましたが、この send メソッドでは以下に示すように例外が発生します
java.net.HttpRetryException: cannot retry due to server authentication, in streaming mode
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.HttpURLConnection.getResponseCode(Unknown Source)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)
at com.google.android.gcm.server.Sender.sendNoRetry(Sender.java:362)
at com.google.android.gcm.server.Sender.send(Sender.java:261)
どんな助けでも大歓迎です、ありがとう