2012-06-13 170 views
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。 那麼會有什麼問題呢?

我也需要重新安裝我的應用程序嗎?

Sing up for C2DM

,因爲我沒有 感謝

回答

0

具有u註冊給定鏈路上的應用程序。你也應該從你的聯繫電子郵件地址中提到的郵件編號上獲得C2DM的郵件。

+0

不,所以我需要在該鏈接上進行註冊?所以這是不一樣的? 意圖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

+0

你必須在https://developers.google.com/android/c2dm/signup?hl進行註冊,然後填寫所有信息,你將會收到上面提到的郵件。在那之後registrationIntent.putExtra(「發件人」,電子郵件);把你在聯繫信息中提到的相同的電子郵件地址放在這裏 – Sumant

+0

謝謝你的時間 – Streetboy