SlideShare a Scribd company logo
1 of 22
Download to read offline
USING THE
NOKIA MUSIC C# API
ON WINDOWS PHONE 8 / WINDOWS 8
Steve Robbins
Chief Architect
Nokia Music
AGENDA

What is Nokia Music?

Introduction to App-to-App and using our App-to-App APIs
Using our C# API to add music data to your app.
NOKIA MUSIC
Instant free music streaming
on Lumia Windows Phones.
100s of curated mixes
Create your own artist mixes
Offline caching
Graphic Equalizer
Personalised Notifications
No login, no ads
Also on Windows 8, S40 and Web.
NOKIA MUSIC APP-TO-APP APIS
Nokia Music for
Windows Phone 8
and Windows 8
include App-to-App APIs
NOKIA MUSIC APP-TO-APP APIS
App-to-App protocols allow one
app to launch another with a
specific URI scheme.
	
  
Launcher.LaunchUriAsync(	
  
"nokia-­‐music://show/artist/?name=	
  
	
  Rihanna")	
  
NOKIA MUSIC APP-TO-APP APIS
Launch App

nokia-­‐music://	
  

Search MP3 store

nokia-­‐music://search/anything/?term={term}	
  

Show Artist Details

nokia-­‐music://show/artist/?name={name}	
  

Play an Artist Mix

nokia-­‐music://play/artist/?artist={name}	
  

Show Gigs Around You

nokia-­‐music://show/gigs/	
  

Search for Gigs

nokia-­‐music://search/gigs/?term={term}	
  

Show Curated Mixes

nokia-­‐music://show/mixes/	
  

Play a Curated Mix

nokia-­‐music://play/mix/?id={id}	
  

Show Product Details – e.g. an album

nokia-­‐music://show/product/?id={id}	
  
DEMOS

Create App that Launches Nokia Music
Extend App to search for music
Benefits of App-to-App – Social Networks, NFC
APP-TO-APP AND NFC
ProximityDevice	
  device	
  =	
  ProximityDevice.GetDefault();	
  
if	
  (device	
  !=	
  null)	
  {	
  
	
  	
  	
  device.PublishBinaryMessage("WindowsUri:WriteTag",	
  
	
  	
  	
  	
  	
  	
  	
  GetBufferFromUrl("nokia-­‐music://play/mix/?id=35541874"),	
  
	
  	
  	
  	
  	
  	
  	
  UnregisterUponSend);	
  
	
  	
  	
  MessageBox.Show("Tap	
  NFC	
  tag	
  to	
  write	
  link");	
  
}	
  
	
  
See http://nokia.ly/nfcslides
APP-TO-APP SCHEMES
Lots of apps support App-To-App!…

http://nokia.ly/
wpapptoapp
APP-TO-APP IMPLEMENTATION
If you want to learn how to implement app-to-app, watch our //build/ 2012
talk at 14mins-22mins
http://nokia.ly/
buildmusicapi
LAUNCHER TASKS
new	
  ShowArtistTask()	
  {	
  
	
  	
  ArtistName	
  =	
  "Green	
  Day"	
  
}.Show();	
  
WEB FALL-BACK
void	
  Launch(Uri	
  appToAppUri,	
  Uri	
  webFallbackUri)	
  
{	
  
	
  	
  #if	
  WINDOWSPHONE8	
  
	
  	
  if	
  (IsNokiaDevice())	
  
	
  	
  {	
  
	
  	
  	
  	
  Launcher.LaunchUriAsync(appToAppUri);	
  
	
  	
  	
  	
  return;	
  
	
  	
  }	
  
	
  	
  #endif	
  
	
  	
  WebBrowserTask	
  web	
  =	
  new	
  WebBrowserTask();	
  
	
  	
  web.Uri	
  =	
  webFallbackUri;	
  
	
  	
  web.Show();	
  
}	
  
LAUNCHER TASKS
Launch App

new	
  LaunchTask().Show();

Search MP3 store

new	
  MusicSearchTask()	
  {	
  
	
  	
  	
  	
  	
  	
  SearchTerms	
  =	
  "Rihanna"	
  
}.Show();

Show Artist Details

new	
  ShowArtistTask()	
  {	
  
	
  	
  	
  	
  	
  	
  	
  	
  ArtistName	
  =	
  "Green	
  Day”	
  
}.Show();

Play an Artist or Curated Mix

new	
  PlayMixTask()	
  {	
  
ArtistName	
  =	
  "Green	
  Day"	
  
}.Show();

Show Gigs Around You or Search for Gigs

new	
  ShowGigsTask().Show();

Show Curated Mixes

new	
  ShowMixesTask().Show();
DEMOS

API installation with NuGet
Take an existing Location-based app and add “Gigs Near You” feature
NOKIA MUSIC C# API
Makes it easy for you to integrate music
data into your app.	
  
MusicClient	
  api	
  =	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  new	
  MusicClient(ClientId);	
  
var	
  artists	
  =	
  	
  
	
  	
  	
  	
  await	
  api.GetTopArtistsAsync();	
  
list.ItemsSource	
  =	
  artists.Result;	
  
//	
  when	
  user	
  selects	
  artist...	
  	
  
artist.PlayMix();	
  	
  
NOKIA MUSIC C# API
Search

var	
  items	
  =	
  await	
  api.SearchAsync("Green	
  Day");	
  

Search Artist By Location

var	
  a	
  =	
  await	
  api.GetArtistsAroundLocationAsync(51.4,-­‐2.6);

Get Artist Suggestions

var	
  a	
  =	
  await	
  api.GetArtistSearchSuggestionsAsync("Green");

Get Search Suggestions

var	
  a	
  =	
  await	
  api.GetSearchSuggestionsAsync("Poker");

Get charts

var	
  p	
  =	
  await	
  api.GetTopProductsAsync(Category.Album);

Get a list of new releases

var	
  p	
  =	
  await	
  api.GetNewReleasesAsync(Category.Track);

Get the top artists
Get available genres

var	
  a	
  =	
  await	
  api.GetTopArtistsAsync();	
  
var	
  g	
  =	
  await	
  api.GetGenresAsync();

Get top artists in genre

var	
  a	
  =	
  await	
  api.GetTopArtistsForGenreAsync(myGenre);	
  

Get top products in genre

var	
  p	
  =	
  await	
  api.GetTopProductsForGenreAsync(myGenre);

Get new releases in genre

var	
  a	
  =	
  await	
  api.GetNewReleasesForGenreAsync(myGenre);	
  
NOKIA MUSIC C# API
Get products by an artist

var	
  p	
  =	
  await	
  api.GetArtistProductsAsync(myArtist);	
  

Get similar artists

var	
  a=	
  await	
  api.GetSimilarArtistsAsync(myArtist);

Get similar products
Get available Mix Groups

var	
  p	
  =	
  await	
  api.GetSimilarProductsAsync(product);
var	
  g	
  =	
  await	
  api.GetMixGroupsAsync();

Get Mixes for a group

var	
  m	
  =	
  await	
  api.GetMixesAsync(myMixGroup);
DEMOS

Sign up for API Keys

Create application to show artists on map
USER DATA ACCESS
Version 3.x allows easy access to user data:
•  Encapsulates OAuth2 flow.
•  Handles token caching and renewal.
•  User is in complete control.
var	
  result	
  =	
  	
  
	
  	
  	
  await	
  AuthenticateUserAsync(…);
	
  
USER DATA ACCESS
Get Play History

var	
  items	
  =	
  await	
  api.GetUserPlayHistoryAsync();	
  

Get Top Artists

var	
  items	
  =	
  await	
  api.GetUserTopArtistsAsync();
DEMOS

An application that creates wallpaper from recent playback
SUMMARY

Source and examples: http://nokia.ly/wpmusicapi
Contact @sr_gb

More Related Content

Viewers also liked

Tiimiakatemia presentation short_basics_august2014
Tiimiakatemia presentation short_basics_august2014Tiimiakatemia presentation short_basics_august2014
Tiimiakatemia presentation short_basics_august2014www. tiimiakatemia.com
 
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...Christopher Whalen
 
Taking MixRadio Cross-Platform with Xamarin
Taking MixRadio Cross-Platform with XamarinTaking MixRadio Cross-Platform with Xamarin
Taking MixRadio Cross-Platform with XamarinSteve Robbins
 
Władza ustawodawcza - Sejm RP
Władza ustawodawcza - Sejm RPWładza ustawodawcza - Sejm RP
Władza ustawodawcza - Sejm RPMaturazWOSu_eu
 
Nikon Instruments New Product Press Release
Nikon Instruments New Product Press ReleaseNikon Instruments New Product Press Release
Nikon Instruments New Product Press ReleaseHilary Halliwell
 
WW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singlesWW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singlesMorgan Lloyd
 
Eco bairros - Sustainability City
Eco bairros - Sustainability CityEco bairros - Sustainability City
Eco bairros - Sustainability CityFelipe Regues
 
Информационно-аналитическая система национальных счетов РФ
Информационно-аналитическая система национальных счетов РФИнформационно-аналитическая система национальных счетов РФ
Информационно-аналитическая система национальных счетов РФКРОК
 

Viewers also liked (14)

Tiimiakatemia presentation short_basics_august2014
Tiimiakatemia presentation short_basics_august2014Tiimiakatemia presentation short_basics_august2014
Tiimiakatemia presentation short_basics_august2014
 
Todorov
TodorovTodorov
Todorov
 
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...
How Google Ad Grants, AdWords & Analytics can help you achieve your organizat...
 
Rm tarea - 5º
Rm   tarea - 5ºRm   tarea - 5º
Rm tarea - 5º
 
Taking MixRadio Cross-Platform with Xamarin
Taking MixRadio Cross-Platform with XamarinTaking MixRadio Cross-Platform with Xamarin
Taking MixRadio Cross-Platform with Xamarin
 
Władza ustawodawcza - Sejm RP
Władza ustawodawcza - Sejm RPWładza ustawodawcza - Sejm RP
Władza ustawodawcza - Sejm RP
 
What is Tiimiakatemia?
What is Tiimiakatemia?What is Tiimiakatemia?
What is Tiimiakatemia?
 
What is Tiimiakatemia?
What is Tiimiakatemia?What is Tiimiakatemia?
What is Tiimiakatemia?
 
Nikon Instruments New Product Press Release
Nikon Instruments New Product Press ReleaseNikon Instruments New Product Press Release
Nikon Instruments New Product Press Release
 
Printmaking
PrintmakingPrintmaking
Printmaking
 
WW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singlesWW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singles
 
Eco bairros - Sustainability City
Eco bairros - Sustainability CityEco bairros - Sustainability City
Eco bairros - Sustainability City
 
IF I COULD CHANGE THE WORLD
IF I COULD CHANGE THE WORLDIF I COULD CHANGE THE WORLD
IF I COULD CHANGE THE WORLD
 
Информационно-аналитическая система национальных счетов РФ
Информационно-аналитическая система национальных счетов РФИнформационно-аналитическая система национальных счетов РФ
Информационно-аналитическая система национальных счетов РФ
 

Similar to Use the Nokia Music C# API on Windows Phone 8 and Windows 8

Last fm api_overview
Last fm api_overviewLast fm api_overview
Last fm api_overviewyuliang
 
Gracenote API - MusicHackDay
Gracenote API - MusicHackDayGracenote API - MusicHackDay
Gracenote API - MusicHackDayOscar Celma
 
創作 MusicKit 告白情歌
創作 MusicKit 告白情歌創作 MusicKit 告白情歌
創作 MusicKit 告白情歌彼得潘 Pan
 
Last.fm API workshop - Stockholm
Last.fm API workshop - StockholmLast.fm API workshop - Stockholm
Last.fm API workshop - StockholmMatthew Ogle
 
Using hapi plugins to version your API (hapiDays 2014)
Using hapi plugins to version your API (hapiDays 2014)Using hapi plugins to version your API (hapiDays 2014)
Using hapi plugins to version your API (hapiDays 2014)Dave Stevens
 
Dive into apple music app
Dive into apple music appDive into apple music app
Dive into apple music appTakuro Hanawa
 
Fetch me if you can - Handling API data in different JS frameworks
Fetch me if you can - Handling API data in different JS frameworksFetch me if you can - Handling API data in different JS frameworks
Fetch me if you can - Handling API data in different JS frameworksMarco Pagni
 
Gracenote API Walkthrough @ Music Hack Day SF ’13
Gracenote API Walkthrough @ Music Hack Day SF ’13Gracenote API Walkthrough @ Music Hack Day SF ’13
Gracenote API Walkthrough @ Music Hack Day SF ’13Ching-Wei Chen
 
API-Driven Development with OpenAPI Specification Testing
API-Driven Development with OpenAPI Specification TestingAPI-Driven Development with OpenAPI Specification Testing
API-Driven Development with OpenAPI Specification TestingNordic APIs
 
Managing your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIManaging your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIToshiaki Maki
 
melodic presentation.pptx
melodic presentation.pptxmelodic presentation.pptx
melodic presentation.pptxReecePulham
 
Application Programming Interfaces
Application Programming InterfacesApplication Programming Interfaces
Application Programming InterfacesCindy Royal
 
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfHere is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfaggarwalshoppe14
 
Mining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialMining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialBen Fields
 
Mining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialMining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialclaudio b
 
I've got key to your API, now what?
I've got key to your API, now what?I've got key to your API, now what?
I've got key to your API, now what?Javaun Moradi
 
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...Public Broadcasting Service
 
Technology is the new rock n roll
Technology is the new rock n rollTechnology is the new rock n roll
Technology is the new rock n rollExicon
 
Data Visualization: Introduction to Shiny Web Applications
Data Visualization: Introduction to Shiny Web ApplicationsData Visualization: Introduction to Shiny Web Applications
Data Visualization: Introduction to Shiny Web ApplicationsOlga Scrivner
 
SoundCloud API Do:s and Don't:s
SoundCloud API Do:s and Don't:sSoundCloud API Do:s and Don't:s
SoundCloud API Do:s and Don't:sEric Wahlforss
 

Similar to Use the Nokia Music C# API on Windows Phone 8 and Windows 8 (20)

Last fm api_overview
Last fm api_overviewLast fm api_overview
Last fm api_overview
 
Gracenote API - MusicHackDay
Gracenote API - MusicHackDayGracenote API - MusicHackDay
Gracenote API - MusicHackDay
 
創作 MusicKit 告白情歌
創作 MusicKit 告白情歌創作 MusicKit 告白情歌
創作 MusicKit 告白情歌
 
Last.fm API workshop - Stockholm
Last.fm API workshop - StockholmLast.fm API workshop - Stockholm
Last.fm API workshop - Stockholm
 
Using hapi plugins to version your API (hapiDays 2014)
Using hapi plugins to version your API (hapiDays 2014)Using hapi plugins to version your API (hapiDays 2014)
Using hapi plugins to version your API (hapiDays 2014)
 
Dive into apple music app
Dive into apple music appDive into apple music app
Dive into apple music app
 
Fetch me if you can - Handling API data in different JS frameworks
Fetch me if you can - Handling API data in different JS frameworksFetch me if you can - Handling API data in different JS frameworks
Fetch me if you can - Handling API data in different JS frameworks
 
Gracenote API Walkthrough @ Music Hack Day SF ’13
Gracenote API Walkthrough @ Music Hack Day SF ’13Gracenote API Walkthrough @ Music Hack Day SF ’13
Gracenote API Walkthrough @ Music Hack Day SF ’13
 
API-Driven Development with OpenAPI Specification Testing
API-Driven Development with OpenAPI Specification TestingAPI-Driven Development with OpenAPI Specification Testing
API-Driven Development with OpenAPI Specification Testing
 
Managing your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIManaging your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CI
 
melodic presentation.pptx
melodic presentation.pptxmelodic presentation.pptx
melodic presentation.pptx
 
Application Programming Interfaces
Application Programming InterfacesApplication Programming Interfaces
Application Programming Interfaces
 
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfHere is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
 
Mining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialMining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorial
 
Mining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorialMining the social web for music-related data: a hands-on tutorial
Mining the social web for music-related data: a hands-on tutorial
 
I've got key to your API, now what?
I've got key to your API, now what?I've got key to your API, now what?
I've got key to your API, now what?
 
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...
I've Got a Key to Your API, Now What? (Joint PBS and NPR API Presentation Giv...
 
Technology is the new rock n roll
Technology is the new rock n rollTechnology is the new rock n roll
Technology is the new rock n roll
 
Data Visualization: Introduction to Shiny Web Applications
Data Visualization: Introduction to Shiny Web ApplicationsData Visualization: Introduction to Shiny Web Applications
Data Visualization: Introduction to Shiny Web Applications
 
SoundCloud API Do:s and Don't:s
SoundCloud API Do:s and Don't:sSoundCloud API Do:s and Don't:s
SoundCloud API Do:s and Don't:s
 

Recently uploaded

How to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityHow to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityEric T. Tung
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Servicediscovermytutordmt
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxpriyanshujha201
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesDipal Arora
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Lviv Startup Club
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...amitlee9823
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfPaul Menig
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Centuryrwgiffor
 
Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Roland Driesen
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...rajveerescorts2022
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfAmzadHosen3
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...lizamodels9
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...lizamodels9
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...amitlee9823
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 

Recently uploaded (20)

unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
 
How to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityHow to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League City
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Service
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdf
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Century
 
Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdf
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
Forklift Operations: Safety through Cartoons
Forklift Operations: Safety through CartoonsForklift Operations: Safety through Cartoons
Forklift Operations: Safety through Cartoons
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 

Use the Nokia Music C# API on Windows Phone 8 and Windows 8

  • 1. USING THE NOKIA MUSIC C# API ON WINDOWS PHONE 8 / WINDOWS 8 Steve Robbins Chief Architect Nokia Music
  • 2. AGENDA What is Nokia Music? Introduction to App-to-App and using our App-to-App APIs Using our C# API to add music data to your app.
  • 3. NOKIA MUSIC Instant free music streaming on Lumia Windows Phones. 100s of curated mixes Create your own artist mixes Offline caching Graphic Equalizer Personalised Notifications No login, no ads Also on Windows 8, S40 and Web.
  • 4. NOKIA MUSIC APP-TO-APP APIS Nokia Music for Windows Phone 8 and Windows 8 include App-to-App APIs
  • 5. NOKIA MUSIC APP-TO-APP APIS App-to-App protocols allow one app to launch another with a specific URI scheme.   Launcher.LaunchUriAsync(   "nokia-­‐music://show/artist/?name=    Rihanna")  
  • 6. NOKIA MUSIC APP-TO-APP APIS Launch App nokia-­‐music://   Search MP3 store nokia-­‐music://search/anything/?term={term}   Show Artist Details nokia-­‐music://show/artist/?name={name}   Play an Artist Mix nokia-­‐music://play/artist/?artist={name}   Show Gigs Around You nokia-­‐music://show/gigs/   Search for Gigs nokia-­‐music://search/gigs/?term={term}   Show Curated Mixes nokia-­‐music://show/mixes/   Play a Curated Mix nokia-­‐music://play/mix/?id={id}   Show Product Details – e.g. an album nokia-­‐music://show/product/?id={id}  
  • 7. DEMOS Create App that Launches Nokia Music Extend App to search for music Benefits of App-to-App – Social Networks, NFC
  • 8. APP-TO-APP AND NFC ProximityDevice  device  =  ProximityDevice.GetDefault();   if  (device  !=  null)  {        device.PublishBinaryMessage("WindowsUri:WriteTag",                GetBufferFromUrl("nokia-­‐music://play/mix/?id=35541874"),                UnregisterUponSend);        MessageBox.Show("Tap  NFC  tag  to  write  link");   }     See http://nokia.ly/nfcslides
  • 9. APP-TO-APP SCHEMES Lots of apps support App-To-App!… http://nokia.ly/ wpapptoapp
  • 10. APP-TO-APP IMPLEMENTATION If you want to learn how to implement app-to-app, watch our //build/ 2012 talk at 14mins-22mins http://nokia.ly/ buildmusicapi
  • 11. LAUNCHER TASKS new  ShowArtistTask()  {      ArtistName  =  "Green  Day"   }.Show();  
  • 12. WEB FALL-BACK void  Launch(Uri  appToAppUri,  Uri  webFallbackUri)   {      #if  WINDOWSPHONE8      if  (IsNokiaDevice())      {          Launcher.LaunchUriAsync(appToAppUri);          return;      }      #endif      WebBrowserTask  web  =  new  WebBrowserTask();      web.Uri  =  webFallbackUri;      web.Show();   }  
  • 13. LAUNCHER TASKS Launch App new  LaunchTask().Show(); Search MP3 store new  MusicSearchTask()  {              SearchTerms  =  "Rihanna"   }.Show(); Show Artist Details new  ShowArtistTask()  {                  ArtistName  =  "Green  Day”   }.Show(); Play an Artist or Curated Mix new  PlayMixTask()  {   ArtistName  =  "Green  Day"   }.Show(); Show Gigs Around You or Search for Gigs new  ShowGigsTask().Show(); Show Curated Mixes new  ShowMixesTask().Show();
  • 14. DEMOS API installation with NuGet Take an existing Location-based app and add “Gigs Near You” feature
  • 15. NOKIA MUSIC C# API Makes it easy for you to integrate music data into your app.   MusicClient  api  =                    new  MusicClient(ClientId);   var  artists  =            await  api.GetTopArtistsAsync();   list.ItemsSource  =  artists.Result;   //  when  user  selects  artist...     artist.PlayMix();    
  • 16. NOKIA MUSIC C# API Search var  items  =  await  api.SearchAsync("Green  Day");   Search Artist By Location var  a  =  await  api.GetArtistsAroundLocationAsync(51.4,-­‐2.6); Get Artist Suggestions var  a  =  await  api.GetArtistSearchSuggestionsAsync("Green"); Get Search Suggestions var  a  =  await  api.GetSearchSuggestionsAsync("Poker"); Get charts var  p  =  await  api.GetTopProductsAsync(Category.Album); Get a list of new releases var  p  =  await  api.GetNewReleasesAsync(Category.Track); Get the top artists Get available genres var  a  =  await  api.GetTopArtistsAsync();   var  g  =  await  api.GetGenresAsync(); Get top artists in genre var  a  =  await  api.GetTopArtistsForGenreAsync(myGenre);   Get top products in genre var  p  =  await  api.GetTopProductsForGenreAsync(myGenre); Get new releases in genre var  a  =  await  api.GetNewReleasesForGenreAsync(myGenre);  
  • 17. NOKIA MUSIC C# API Get products by an artist var  p  =  await  api.GetArtistProductsAsync(myArtist);   Get similar artists var  a=  await  api.GetSimilarArtistsAsync(myArtist); Get similar products Get available Mix Groups var  p  =  await  api.GetSimilarProductsAsync(product); var  g  =  await  api.GetMixGroupsAsync(); Get Mixes for a group var  m  =  await  api.GetMixesAsync(myMixGroup);
  • 18. DEMOS Sign up for API Keys Create application to show artists on map
  • 19. USER DATA ACCESS Version 3.x allows easy access to user data: •  Encapsulates OAuth2 flow. •  Handles token caching and renewal. •  User is in complete control. var  result  =          await  AuthenticateUserAsync(…);  
  • 20. USER DATA ACCESS Get Play History var  items  =  await  api.GetUserPlayHistoryAsync();   Get Top Artists var  items  =  await  api.GetUserTopArtistsAsync();
  • 21. DEMOS An application that creates wallpaper from recent playback
  • 22. SUMMARY Source and examples: http://nokia.ly/wpmusicapi Contact @sr_gb