Ivo Pavlik
Ivo Pavlik

Reputation: 297

Associate URL with Windows Phone 8.1 application

is it possible to associate specific URL with Windows Phone 8.1 application? When there is a request to open URL in format e.g. http://myservice.mydomain.com?Params... from e-mail or page in browser, my application will process an URL. On Android it is possible in manifest with intent-filter for some activity:

...
<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:host="myservice.mydomain.com" android:scheme="http" />
</intent-filter>
...

Thanks.

Upvotes: 0

Views: 151

Answers (1)

Jogy
Jogy

Reputation: 2475

You can make an URI association with a custom URI schema, like "myapp:" Read more here: URI Associations

Upvotes: 1

Related Questions