2

I am Developing a web server which sends push messages automatically to my android application whenever I add new data on web server. But, for sending the push message through C2DM server we need to get a google Authentication Token(AuthToken). My doubt is that whether the token can be saved and used for later times also, or we should every time get a fresh AuthToken...!!!

Someone please help me regarding this..!

Thanks in Advance

4

1 回答 1

1

据我所知,谷歌没有说明身份验证令牌的有效期。但是当向 C2DM 服务器发送推送通知时,响应可能包含一个 Update-Client-Auth,其中还包含一个新的 AuthToken。

所以基本上你可以存储 AuthToken 并重用它,只要确保你处理响应,当然,如果你收到一个 401 代码作为响应,你必须手动请求一个新的 Auth Token。

也可以看看:

C2DM 发送消息

谷歌 C2DM

于 2011-11-23T14:40:09.670 回答