Spotify Now PlayingはSpotifyの現在の再生曲を表示するiOS向けのデモアプリです。
- Spotifyとの連携ログイン
- 現在再生中の曲の表示
- 手動による再生曲の更新
- Spotify Developer Dashboardにアクセスし、新しいアプリケーションを作成します。
- アプリケーション設定の"Redirect URIs"に
SpotifyNowListeningAppDemo://spotify
を追加します。 - "Client ID"と"Client Secret"を取得し、プロジェクトの
Config.plist
ファイルにそれぞれを記述します。具体的には、Config.plist
は以下のような形式とします。
<dict>
<key>CLIENT_ID</key>
<string>YOUR_CLIENT_ID</string>
<key>CLIENT_SECRET</key>
<string>YOUR_CLIENT_SECRET</string>
</dict>
YOUR_CLIENT_ID
とYOUR_CLIENT_SECRET
の部分はSpotify Developer Dashboardで取得した実際のClient IDとClient Secretに置き換えてください。
Spotify Now Playing is a demo iOS app that displays the current track being played on Spotify.
- Log in via Spotify
- Display the currently playing track
- Manual update of the playing track
- Visit the Spotify Developer Dashboard and create a new application.
- In the application settings, add
SpotifyNowListeningAppDemo://spotify
to "Redirect URIs". - Obtain the "Client ID" and "Client Secret", and write them in the project's
Config.plist
file respectively. Specifically, theConfig.plist
should be in the following format:
<dict>
<key>CLIENT_ID</key>
<string>YOUR_CLIENT_ID</string>
<key>CLIENT_SECRET</key>
<string>YOUR_CLIENT_SECRET</string>
</dict>
Replace YOUR_CLIENT_ID and YOUR_CLIENT_SECRET with the actual Client ID and Client Secret obtained from the Spotify Developer Dashboard.