我想爲我的應用創建唯一的ID。如以下鏈接使用實例ID作爲我的Android應用的唯一ID
https://developers.google.com/android/reference/com/google/android/gms/iid/InstanceID
給予我想用實例id作爲唯一的ID。
String uniqueID = InstanceID.getInstance(context).getId();
由於某些配置設置,我的服務器期望唯一的id只能用小寫。由於實例ID給出了大寫字母和小寫字母。我正在考慮將每個實例id字符轉換爲其對應的ASCII值,並將其作爲我的唯一ID發送。這是否是正確的方法?
我還在念叨FirebaseInstaceId
https://firebase.google.com/docs/reference/android/com/google/firebase/iid/FirebaseInstanceId
是否建議使用FirebaseInstanceId了實例ID。我沒有發現它在任何地方的文檔中寫入。請建議。
謝謝。
更改服務器設置以接受大寫? – creativecreatorormaybenot
現在不可能。我只能從設備端進行一些操作。 – MobileAppDeveloper