Spotify Web APIでデバイスから指定した音楽を再生してみる
先日個人的にSpotifyを契約し、こちらでSpotify Web APIの使い方を読んだ後なんとなく公式のドキュメントを見ていたところ、情報の取得や更新に限らず音楽の再生ができるとのことでした。
本記事では、APIを実行する準備を行い、以下のようなシナリオでAPIを実行してみます。
- 接続されたデバイスの一覧を取得
- 自分のプレイリスト一覧の取得
- プレイリストに登録されたトラック一覧の取得
- デバイスを指定して、取得したトラックを再生
注意
一部ベータ版のAPIを呼び出しています。これらは予告なしに挙動が変わる可能性があるとのことです。 参考:New Endpoints (Beta): Web API Connect
前提条件
- Spotify Premiumに登録済みであること(Premiumユーザに生成されたトークンでしか実行できないエンドポイントがあります。)
- Spotifyでなんらかのプレイリストを登録していること
- aurlがインストール済みであること
やってみる
アプリケーションの登録
SpotifyにAPIを呼び出すアプリケーションを登録する必要があります。 ダッシュボードにログインし、CREATE A CLIENT IDからアプリケーションを登録します。
アプリケーションの概要を指定します。
登録後、Client IDおよびClient Secretが取得できるのでメモしておきます。
EDIT SETTINGSから設定を開き、Redirect URLsを指定します。今回はコマンドラインからAPIを実行するだけなので、とりあえずhttp://example.comとしておきます。
Spotify側の準備はこれで整いました。
aurlの準備
Spotify Web APIでは、OAuth2.0のAuthorization Code、Client Credentials、Implicit Grantのフローがそれぞれサポートされていますが、このうちClient Credentialsでは特定のユーザのリソースへのアクセスができないため、Authorization Code Flowでのアクセスをします。 コマンドを簡易にするため、本記事ではaurlを利用します。
aurlにSpotifyから認可コードおよびトークンを得るためのエンドポイントと必要なスコープ、アプリケーションの登録時に取得したclient_id,client_secretを指定します。
1 2 3 4 5 6 7 8 9 | $ vi ~/.aurl/profiles [spotify] grant_type = authorization_code client_id = {$取得したCLIENT ID} client_secret = {$取得したCLIENT SECRET} auth_server_auth_endpoint = https://accounts.spotify.com/authorize auth_server_token_endpoint = https://accounts.spotify.com/api/token redirect = http://example.com scopes = user-read-playback-state,playlist-read-private,user-modify-playback-state |
スコープはアプリケーションでやりたいことに合わせて指定する必要があります。 リファレンスにはエンドポイントごとに必要なスコープが記載されています。
APIの呼び出し
アクセストークンの取得とデバイス一覧の取得
先ほど指定した設定でデバイス一覧取得のAPIにアクセスします。
1 | $ aurl --profile spotify https://api.spotify.com/v1/me/player/devices |
初回のアクセス時はSpotify側のリソースへのアクセス権限の許可を求める画面が開くので、OKをクリックします。
以下のようなURLにリダイレクトしますので、クエリパラメータのcodeの値を取得します。
コンソールに戻ります。認可コードの入力を求められるので、取得したcodeを指定します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | $ aurl --profile spotify https://api.spotify.com/v1/me/player/devices Open browser and get code from Enter code: XXXXXXXXXXXX { "devices" : [ { "id" : "xxxxx", "is_active" : false, "is_restricted" : false, "name" : "JunのMacBook Pro", "type" : "Computer", "volume_percent" : 100 }, { "id" : "xxxxx_google_home", "is_active" : true, "is_restricted" : false, "name" : "部屋", "type" : "CastAudio", "volume_percent" : null } ] |
APIが実行され、登録済みのデバイス一覧が取得できました。今使っているPCと、部屋に置いてあるGoogle Homeが登録されています。(Google Homeに部屋という名前をつけています)
プレイリストの取得
登録済みのプレイリスト一覧を取得します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | $ aurl --profile spotify https://api.spotify.com/v1/me/playlists?limit=1 { "items" : [ { "collaborative" : false, "external_urls" : { "spotify" : }, "id" : "xxxxx", "images" : [ { "height" : 640, "width" : 640 }, { "height" : 300, "width" : 300 }, { "height" : 60, "width" : 60 } ], "name" : "Footwork-Jungle-Juke", "owner" : { "display_name" : "xxxxx", "external_urls" : { "spotify" : "https://open.spotify.com/user/xxxxx" }, "href" : "https://api.spotify.com/v1/users/xxxxx", "id" : "xxxxx", "type" : "user", "uri" : "spotify:user:xxxxx" }, "public" : false, "snapshot_id" : "EhO8zMMM43/IsIAuTnNNN06ByyJTwsyW2upGErVE478dw/IH6P5ogZGEr9nm0wvv", "tracks" : { "total" : 87 }, "type" : "playlist", "uri" : "spotify:user:xxxxx:playlist:xxxxx" } ], "limit" : 1, "offset" : 0, "previous" : null, "total" : 8 } |
プレイリスト内のトラックの取得
プレイリストに登録されているトラックを取得します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | $ aurl --profile spotify { "items" : [ { "added_at" : "2016-04-21T07:14:13Z", "added_by" : { "external_urls" : { "spotify" : "https://open.spotify.com/user/xxxxx" }, "href" : "https://api.spotify.com/v1/users/xxxxx", "id" : "xxxxx", "type" : "user", "uri" : "spotify:user:xxxxx" }, "is_local" : false, "track" : { "album" : { "album_type" : "album", "artists" : [ { "external_urls" : { "spotify" : "https://open.spotify.com/artist/4zGBj9dI63YIWmZkPl3o7V" }, "id" : "4zGBj9dI63YIWmZkPl3o7V",f "name" : "DJ Rashad", "type" : "artist", "uri" : "spotify:artist:4zGBj9dI63YIWmZkPl3o7V" } ], "available_markets" : [ ], "external_urls" : { "spotify" : "https://open.spotify.com/album/4J7qkorMbPmJQy79SntDA8" }, "id" : "4J7qkorMbPmJQy79SntDA8", "images" : [ { "height" : 640, "url" : "width" : 640 }, { "height" : 300, "url" : "width" : 300 }, { "height" : 64, "url" : "width" : 64 } ], "name" : "Double Cup", "release_date" : "2013-10-22", "release_date_precision" : "day", "type" : "album", "uri" : "spotify:album:4J7qkorMbPmJQy79SntDA8" }, "artists" : [ { "external_urls" : { "spotify" : "https://open.spotify.com/artist/4zGBj9dI63YIWmZkPl3o7V" }, "id" : "4zGBj9dI63YIWmZkPl3o7V", "name" : "DJ Rashad", "type" : "artist", "uri" : "spotify:artist:4zGBj9dI63YIWmZkPl3o7V" }, { "external_urls" : { "spotify" : "https://open.spotify.com/artist/238R2QkXhYWy3YUIYlbtsc" }, "id" : "238R2QkXhYWy3YUIYlbtsc", "name" : "Spinn", "type" : "artist", "uri" : "spotify:artist:238R2QkXhYWy3YUIYlbtsc" } ], "available_markets" : [ ], "disc_number" : 1, "duration_ms" : 270813, "explicit" : false, "external_ids" : { "isrc" : "GBLZC1300093" }, "external_urls" : { "spotify" : "https://open.spotify.com/track/3Sb3FlaHxs5UYVukCy5oNW" }, "id" : "3Sb3FlaHxs5UYVukCy5oNW", "name" : "Feelin (feat. Spinn & Taso)", "popularity" : 24, "preview_url" : null, "track_number" : 1, "type" : "track", "uri" : "spotify:track:3Sb3FlaHxs5UYVukCy5oNW" } } ], "limit" : 1, "offset" : 0, "previous" : null, "total" : 87 } |
取得できました。しかしこのトラックはSpotifyアプリのプレイリストには表示されず再生することもできません。
地域によってSpotifyで配信されている曲は異なるのですが、日本で設定されているアカウントはavailable_marketsにJPが含まれているものだけが再生可能です。
ページ送り
JPで再生可能なトラックを探してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | $ aurl --profile spotify { "items" : [ { "added_at" : "2016-04-21T07:35:39Z", "added_by" : { "external_urls" : { "spotify" : "https://open.spotify.com/user/xxxxx" }, "href" : "https://api.spotify.com/v1/users/xxxxx", "id" : "xxxxx", "type" : "user", "uri" : "spotify:user:xxxxx" }, "is_local" : false, "track" : { "album" : { "album_type" : "single", "artists" : [ { "external_urls" : { "spotify" : "https://open.spotify.com/artist/7DF6NrPDuqT69SYiqtWWcW" }, "id" : "7DF6NrPDuqT69SYiqtWWcW", "name" : "Stray", "type" : "artist", "uri" : "spotify:artist:7DF6NrPDuqT69SYiqtWWcW" } ], "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IL", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "RO", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY", "VN", "ZA" ], "external_urls" : { "spotify" : "https://open.spotify.com/album/6FfCvbzYiemvMq3XhUs6S0" }, "id" : "6FfCvbzYiemvMq3XhUs6S0", "images" : [ { "height" : 640, "url" : "width" : 640 }, { "height" : 300, "url" : "width" : 300 }, { "height" : 64, "url" : "width" : 64 } ], "name" : "Paradise (Remixes)", "release_date" : "2015-07-31", "release_date_precision" : "day", "type" : "album", "uri" : "spotify:album:6FfCvbzYiemvMq3XhUs6S0" }, "artists" : [ { "external_urls" : { "spotify" : "https://open.spotify.com/artist/7DF6NrPDuqT69SYiqtWWcW" }, "id" : "7DF6NrPDuqT69SYiqtWWcW", "name" : "Stray", "type" : "artist", "uri" : "spotify:artist:7DF6NrPDuqT69SYiqtWWcW" }, { "external_urls" : { "spotify" : "https://open.spotify.com/artist/06xa1OLBsMQJFXcl2tQkH4" }, "id" : "06xa1OLBsMQJFXcl2tQkH4", "name" : "Machinedrum", "type" : "artist", "uri" : "spotify:artist:06xa1OLBsMQJFXcl2tQkH4" } ], "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IL", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "RO", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY", "VN", "ZA" ], "disc_number" : 1, "duration_ms" : 278120, "explicit" : false, "external_ids" : { "isrc" : "GBSZM1500364" }, "external_urls" : { "spotify" : "https://open.spotify.com/track/0ipvRATjnKeAlIRNS5WqhN" }, "id" : "0ipvRATjnKeAlIRNS5WqhN", "name" : "Movements - Machinedrum Remix", "popularity" : 10, "preview_url" : "track_number" : 2, "type" : "track", "uri" : "spotify:track:0ipvRATjnKeAlIRNS5WqhN" } } ], "limit" : 1, "offset" : 15, "total" : 87 } |
こちらは再生可能なようです。Spotifyアプリ上にも表示されます。
再生する
以下のAPIで音楽を再生できます。 urisが配列なのは、次に再生する曲、さらに次に再生する曲、を指定できるためです。
1 2 3 4 | aurl --profile spotify -X PUT -d '{"uris":["spotify:track:0ipvRATjnKeAlIRNS5WqhN", "spotify:track:4TzkNDcjO1wiaRYs2HLXvA"]}' |
Google Homeから音楽が再生されました。また、2番目に登録したトラックもPlay Queueに登録されています。
停止する
以下のAPIで再生中のトラックが停止します。
1 2 | aurl --profile spotify -X PUT |
まとめ
- Spotify Web APIによって、以下の操作をしてみました。
- 接続済みのデバイス一覧の取得
- 登録済みのプレイリストの取得
- プレイリスト内のトラック一覧の取得
- 指定したトラックの再生と停止
- 一部ベータ版のAPIを呼び出しています。これらは予告なしに挙動が変わる可能性があるとのことです。
とりあえず指定した時刻に指定したプレイリストからランダムで音楽が流れるアプリ(≒目覚めし時計)を作ってみようかなという気分です。
私からは以上です。