Languages

Menu
Sites
Language
URL link to Seller apps page of Tizen store within Unity3d

I want to direct my users from within the game to the developer apps page, I'm using unity3d for the development, what URL should i write in the method

 Application.OpenURL("");....... Anyhelp would be really appreciated, thanks.
View Selected Answer

Responses

2 Replies
Mark as answer
Anirban Dutta

Hi!

You can use tizen store URI format to open Seller apps page from within your application:

 

 tizenstore://SellerApps/{Seller id from Seller Office}


A call to OpenURL like following  will work:

Application.OpenURL("tizenstore://SellerApps/p59ezq3jff");

Thanks.

Asad Shoaib

Thanks, really helpfull :)