sniper-fly / Otaku-GPaT

0 stars 0 forks source link

Spotify APIの仕様確認 #3

Open sniper-fly opened 5 months ago

sniper-fly commented 5 months ago

https://developer.spotify.com/documentation/web-api/reference/search

searchで、曲名を検索してイメージの表示が可能

APIで検索、取得したデータから、playlistの追加が可能かどうか調べる

sniper-fly commented 5 months ago

https://developer.spotify.com/documentation/web-api/howtos/web-app-profile 1周済み

sniper-fly commented 5 months ago

https://developer.spotify.com/documentation/web-api/reference/search searchの際、typeパラメータはtrackにする

"uri": "spotify:track:5vb7At47uO0yPGfmYnAHuw" のような形でURIが取得できるので、これを保存

https://developer.spotify.com/documentation/web-api/reference/create-playlist create-playlist APIでまず、publicかprivateなプレイリストを作成

https://developer.spotify.com/documentation/web-api/reference/add-tracks-to-playlist urisパラメータに先程取得したuriを入れて一気に追加する

sniper-fly commented 5 months ago

https://nextjs.org/docs/app/building-your-application/routing/redirecting#redirect-function

https://nextjs.org/docs/app/api-reference/functions/redirect Next.js

https://zenn.dev/fujiyama/articles/97426362f6c84c zennでの解説

Next.jsでのリダイレクトを試す