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

Nikon Instruments New Product Press Release
Nikon Instruments New Product Press ReleaseNikon Instruments New Product Press Release
Nikon Instruments New Product Press Release
Hilary Halliwell
 
WW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singlesWW_BRANDBOOK_SOUND_v3 singles
WW_BRANDBOOK_SOUND_v3 singles
Morgan Lloyd
 
Eco bairros - Sustainability City
Eco bairros - Sustainability CityEco bairros - Sustainability City
Eco bairros - Sustainability City
Felipe 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 Wp dev day_using_the_nokia_music_apis

Last fm api_overview
Last fm api_overviewLast fm api_overview
Last fm api_overview
yuliang
 
Gracenote API - MusicHackDay
Gracenote API - MusicHackDayGracenote API - MusicHackDay
Gracenote API - MusicHackDay
Oscar Celma
 
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
Ching-Wei Chen
 
melodic presentation.pptx
melodic presentation.pptxmelodic presentation.pptx
melodic presentation.pptx
ReecePulham
 
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
aggarwalshoppe14
 

Similar to Wp dev day_using_the_nokia_music_apis (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

Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
dlhescort
 
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Anamikakaur10
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
Matteo Carbone
 
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
Abortion pills in Kuwait Cytotec pills in Kuwait
 
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 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
 
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
 

Recently uploaded (20)

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
 
Falcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investors
 
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceEluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
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 Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
Organizational Transformation Lead with Culture
Organizational Transformation Lead with CultureOrganizational Transformation Lead with Culture
Organizational Transformation Lead with Culture
 
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
 
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 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...
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
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...
 

Wp dev day_using_the_nokia_music_apis

  • 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