用於Android C2DM服務的registration_id字段的最大可能尺寸是多少?Android C2DM Registration_ID最大尺寸
11
A
回答
0
As per the footnote at the bottom of this link.它最多應該是1024個字節。如果您使用的是Java,這也不應該擔心。
private void handleRegistration(Context context, Intent intent)
{
String registration = intent.getStringExtra("registration_id");
.... }
[編輯]
像特雷弗說,最大的尺寸應該是一個cookie的大小。 (4096字節)
2
根據This thread結果變化(給出98和120),但海報建議在數據庫中放置255,這就是我要做的。
9
registration_id
的最大尺寸受Cookie大小的限制,即4K(4096字節)。
實際上,代幣將比這個小得多,但是你不應該依賴這種行爲。
(該registration_id
不被認爲是有效載荷的一部分,所以提到過的腳註雷諾在這裏並不適用。)
來源:在谷歌我在Android團隊。 :)
(我很快就會更新文檔,使這個更清晰,因爲最近有幾個人問。)
+0
你好,如果你有時間,請在這裏檢查我的問題關於registrationId模式:http://stackoverflow.com/questions/12403628/is-there-a-gcm-registrationid-pattern – 2012-09-13 09:51:35
相關問題
- 1. Android MessageQueue最大尺寸
- 2. Android光標最大尺寸
- 3. 最大尺寸
- 4. javascript最大尺寸
- 5. ColorBox最大尺寸
- 6. NSUserDefault最大尺寸
- 7. BlockingCollection最大尺寸
- 8. ICO最大尺寸
- 9. NSUbiquitousKeyValueStore最大尺寸
- 10. QGLWidget最大尺寸
- 11. Android應用程序的最大尺寸?
- 12. Android Scale圖像到最大尺寸
- 13. 最大尺寸/ Oracle Spatial的
- 14. HashSet的最大尺寸
- 15. UILabel的最大尺寸?
- 16. StringBuffer的最大尺寸
- 17. SWT複合最大尺寸
- 18. 升壓池最大尺寸
- 19. MX畫布最大尺寸
- 20. 的malloc的最大尺寸()
- 21. GridBagLayout最大單元尺寸
- 22. 設置QBoxLayout最大尺寸?
- 23. QVector有最大尺寸嗎?
- 24. Unistd閱讀()最大尺寸
- 25. async_read()的最大尺寸
- 26. 最大尺寸在PowerShell中
- 27. JSplitPane底部最大尺寸
- 28. img最大化尺寸
- 29. tkinter最大畫布尺寸?
- 30. RichTextBox最大尺寸限制?
不幸的是這個問題沒有答案.. – garima 2011-01-28 04:15:48