Nokia Music app-to-app protocol for Windows Phone 8
(Chintandave er -) |
kiran10182
(Talk | contribs) m (Kiran10182 -) |
||
| (15 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category: | + | [[Category:Windows Phone]][[Category:Windows Phone 8]][[Category:Nokia Music API]][[Category:Code Snippet]] |
| − | {{Abstract|This article explains how to integrate our application with Nokia Music services and elements using Nokia Music API for Windows Phone. This | + | {{Abstract|This article explains how to integrate our application with Nokia Music services and elements using [[::Category:Nokia Music API|Nokia Music API]] for [[::Category:Windows Phone|Windows Phone]]. This article lists the URI schemes that can be used to launch Nokia Music and do other things with it.}} |
| + | |||
| + | {{Note|This is a community entry in the [[Windows Phone 8 Wiki Competition 2012Q4]].}} | ||
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
|sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| − | |devices= | + | |devices= Nokia Lumia devices, |
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | ||
| − | |platform= Windows Phone | + | |platform= Windows Phone 8 only |
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| − | |dependencies= | + | |dependencies= Nokia Lumia device only, Nokia Music |
| − | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> |
|capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
|keywords= URI, Launcher, LaunchUriAsync | |keywords= URI, Launcher, LaunchUriAsync | ||
| − | |language= | + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> |
|translated-by= <!-- [[User:XXXX]] --> | |translated-by= <!-- [[User:XXXX]] --> | ||
| − | |translated-from-title= <!-- Title only --> | + | |translated-from-title= <!-- Title only --> |
|translated-from-id= <!-- Id of translated revision --> | |translated-from-id= <!-- Id of translated revision --> | ||
| − | |review-by=<!-- After re-review: [[User:username]] --> | + | |review-by= <!-- After re-review: [[User:username]] --> |
|review-timestamp= <!-- After re-review: YYYYMMDD --> | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
|update-by= <!-- After significant update: [[User:username]]--> | |update-by= <!-- After significant update: [[User:username]]--> | ||
|update-timestamp= <!-- After significant update: YYYYMMDD --> | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| − | |creationdate=20121115 | + | |creationdate= 20121115 |
| − | |author= | + | |author= [[User:Chintandave er]] |
| + | }} | ||
| + | |||
| + | {{SeeAlso| | ||
| + | * [http://bit.ly/ZS1w6p Nokia Music API] | ||
| + | * [http://bit.ly/ZS2i3k Nokia Music App-to-app Protocol PPT] | ||
| + | * [http://bit.ly/Wb7PTn URI Scheme of Built in app WP8] | ||
}} | }} | ||
== Introduction == | == Introduction == | ||
| − | Windows Phone 8 | + | [[::Category:Windows Phone 8|Windows Phone 8]] platform supports app-to-app protocol for 3rd party applications. It means that we can launch one app from another app by using Launching API for Windows Phone. This article describes how to use Nokia Music app-to-app protocol for [[::Category:Windows Phone 8|Windows Phone 8]] in our application to avail Nokia Music service. The Nokia Music Windows Phone API provides Launchers that allow easy integration with Nokia Music. Using this URI Scheme, we can launch Nokia Music app, search for an artist or an album, get details of a particular song or an album, get nearest gigs etc. |
== What is app-to-app protocol ? == | == 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. | + | App-to-app protocols allow one app to launch another app with a specific URI Scheme. With [[::Category:Windows Phone 8|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 [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://}} | + | But here we will see how to use Nokia Music API Launchers for [[::Category:Windows Phone 8|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> | ||
| Line 37: | Line 45: | ||
</code> | </code> | ||
| − | + | {{Note|This code cant be tested on [[::Category:Windows Phone 8|Windows Phone 8]] Emulator due to lack of Nokia Music app but can test only on Nokia Lumia [[::Category:Windows Phone 8|Windows Phone 8]] device. If you want to test this code in Emulator, You need .xap file of Nokia music to install Nokia Music app manually.}} | |
== Nokia Music app-to-app protocol == | == Nokia Music app-to-app protocol == | ||
| Line 169: | Line 177: | ||
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/product/?id=36100035”)); | Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/product/?id=36100035”)); | ||
</code> | </code> | ||
| + | |||
| + | == See also == | ||
| + | * [http://www.developer.nokia.com/Resources/Library/Lumia/#!nokia-music-api.html Nokia Music API] | ||
| + | * [http://www.developer.nokia.com/Resources/Library/Lumia/#!nokia-music-api/nokia-music-launchers.html Nokia Music Launchers] | ||
Revision as of 22:21, 21 November 2012
This article explains how to integrate our application with Nokia Music services and elements using Nokia Music API for Windows Phone. This article lists the URI schemes that can be used to launch Nokia Music and do other things with it.
Article Metadata
Tested with
Compatibility
Article
Contents |
Introduction
Windows Phone 8 platform supports app-to-app protocol for 3rd party applications. It means that we can launch one app from another app by using Launching API for Windows Phone. This article describes how to use Nokia Music app-to-app protocol for Windows Phone 8 in our application to avail Nokia Music service. The Nokia Music Windows Phone API provides Launchers that allow easy integration with Nokia Music. Using this URI Scheme, we can launch Nokia Music app, search for an artist or an album, get details of a particular song or an album, get nearest gigs etc.
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 Artist
| 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”));
Play Artist Mix
| Task | URI |
|---|---|
| Play an Artist Mix | nokia-music://play/artist/?artist={name} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://play/artist/?artist=green day”));
Show Gigs Around You
| Task | URI |
|---|---|
| Show Gigs Around You | nokia-music://show/gigs |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/gigs”));
Search for Gigs
| Task | URI |
|---|---|
| Search for Gigs | nokia-music://search/gigs/?term={term} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/gigs”));
Show Curated Mixes
| Task | URI |
|---|---|
| Show Curated Mixes | nokia-music://show/mixes |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/mixes”));
Play a Curated Mix
| Task | URI |
|---|---|
| Play a Curated Mix | nokia-music://play/mix/?id={id} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://play/mix/?id=18523926”));
Show Product Details (e.g. Album)
| Task | URI |
|---|---|
| Show Product Details (e.g. Album) | nokia-music://show/product/?id={id} |
Example:
Windows.System.Launcher.LaunchUriAsync(new Uri(“nokia-music://show/product/?id=36100035”));

