0
我收到來自谷歌的異常說:獲得401響應從C2DM
java.io.IOException: Received authentication challenge is null
我看,這是再現401錯誤。因此,這
Indicates that the ClientLogin AUTH_TOKEN used to validate the sender is invalid.
但我擁有一切registreted和使用ClientLogin成功logined。 那麼會有什麼問題呢?
我也需要重新安裝我的應用程序嗎?
,因爲我沒有 感謝
不,所以我需要在該鏈接上進行註冊?所以這是不一樣的? 意圖registrationIntent = new Intent(「com.google.android.c2dm.intent.REGISTER」); registrationIntent.putExtra(「app」,PendingIntent.getBroadcast(this,0,new Intent(),0)); registrationIntent.putExtra(「sender」,email); this.startService(registrationIntent); – Streetboy
你必須在https://developers.google.com/android/c2dm/signup?hl進行註冊,然後填寫所有信息,你將會收到上面提到的郵件。在那之後registrationIntent.putExtra(「發件人」,電子郵件);把你在聯繫信息中提到的相同的電子郵件地址放在這裏 – Sumant
謝謝你的時間 – Streetboy