How to process information using url-schemes

I want launch the windows game to use Url scheme. This game is made Unity3D. If I click start button on Webpage it will lauch the game and Url scheme give parameters several information (ex. userId, record, etc…) so Unity Game process these informations. But I don’t know. How can I process these informations?? Maybe there is Unity API about that? If there is Please let me know. If there is no Please let me know other way.

Well, you just need to regsiter your application for a particular URI scheme in the registry. Your applicaion will be started as usual. However you should get the URI that followed the scheme as parameter to your application.

To read the command line parameters of you application you would use “System.Environment.GetCommandLineArgs()”