Nokia Music app-to-app protocol for Windows Phone 8
(Chintandave er -) |
(Chintandave er -) |
||
| Line 31: | Line 31: | ||
App-to-app protocols allow one app to launch another app with a specific URI Scheme. With Windows Phone 8, we can also register our app as 3rd party application to support app-to-app protocol and can allow other app to open our app and use elements of our app into their app. | App-to-app protocols allow one app to launch another app with a specific URI Scheme. With Windows Phone 8, we can also register our app as 3rd party application to support app-to-app protocol and can allow other app to open our app and use elements of our app into their app. | ||
| − | But here we will see how to use Nokia Music API Launchers for Windows Phone 8 to use various services of Nokia Music. To call app-to-app protocol, we need to use | + | But here we will see how to use Nokia Music API Launchers for Windows Phone 8 to use various services of Nokia Music. To call app-to-app protocol, we need to use [http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh701480.aspx Launcher.LaunchUriAsync(Uri)] method and pass URI schema in it. For example, to launch Nokia Music app from other app call {{Icode|Launcher.LaunchUriAsync(Uri)}} with URI Schema {{Icode|nokia-music://}} |
<code csharp> | <code csharp> | ||
Revision as of 20:24, 15 November 2012
This article explains how to integrate our application with Nokia Music services and elements using Nokia Music API for Windows Phone.
Article Metadata
Compatibility
Article
Contents |
Introduction
Windows Phone 8 Supports app-to-app protocol even for 3rd party application. That means we can launch one app from other app by using Launching API for Windows Phone. Here We will show how to use Nokia Music app-to-app protocol for Windows Phone 8 in our application to get use of Nokia Music service. The Nokia Music Windows Phone API providers Launchers that allow integration with Nokia Music in the same easy manner.
What is app-to-app protocol
App-to-app protocols allow one app to launch another app with a specific URI Scheme. With Windows Phone 8, we can also register our app as 3rd party application to support app-to-app protocol and can allow other app to open our app and use elements of our app into their app.
But here we will see how to use Nokia Music API Launchers for Windows Phone 8 to use various services of Nokia Music. To call app-to-app protocol, we need to use Launcher.LaunchUriAsync(Uri) method and pass URI schema in it. For example, to launch Nokia Music app from other app call Launcher.LaunchUriAsync(Uri) with URI Schema nokia-music://
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://”));
Nokia Music app-to-app protocol
Here are the list of Nokia Music app-to-app protocol with example.
Launch App
| Task | URI |
|---|---|
| Launch App | nokia-music:// |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://”));
Search Anything
| Task | URI |
|---|---|
| Search | nokia-music://search/anything/?term={searchtext} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://search/anything/?term=green day”));
Show Artist Details
| Task | URI |
|---|---|
| Show Artist Details By Id | nokia-music://show/artist/?id={id} |
| Show Artist Details By name | nokia-music://show/artist/?name={name} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“ nokia-music://show/artist/?name=green day”));

