Languages

Menu
Sites
Language
System Information: TizenID

I'm writing a Tizen application and want to tie a user's data to their unique device (so that someone can't easily move that data to another one without a password). In the API I found access to a "TizenID" that is a "randomly-generated" value.

The documentation does not specify when that value is generated and therefore I can not tell how unique that value is.

In Android there is "AndroidID" that you can access that is documented to be generated the first time an installation is booted up. From that documentation I can tell the Android ID is unique per device and changes if someone factory resets their device.

I want to know if the TizenID is unique per device, per installation, etc.

Thanks

Responses

2 Replies
K Johnson

According to my understanding, TizenID is unique per device but not for per installation. I'd tested with two different Samsung Z3 device and got two different TizenID for both. Those unique IDs were same for every installation. You may try below code:

void get_TizenID() {
    char *value;
	int ret;

	ret = system_info_get_platform_string("http://tizen.org/system/tizenid", &value);
	if (ret == SYSTEM_INFO_ERROR_NONE)
	{
	  dlog_print(DLOG_DEBUG, "TizenID", "TizenID : %s", value);
	}

	free(value);
}

 

hp support number

Amazing insight you have on this, it’s nice to find a website that details so much information about different artists