비버놀로지

[Spotify 스포티파이] 1. Spotify OPEN API 가입 본문

OPEN API 활용

[Spotify 스포티파이] 1. Spotify OPEN API 가입

KUNDUZ 2021. 3. 9. 14:53
728x90

developer.spotify.com/dashboard/applications

 

My Dashboard | Spotify for Developers

Create and manage Spotify Applications to use the Spotify Web API. Obtain credentials to authenticate with Spotify and fetch metadata.

developer.spotify.com

 

 

 

위의 링크에 들어가서 Spotify 에 가입을 해주고 앱만들기를 해준다.

 

 

 

사용할 앱 이름과 앱 설명을 적어주고 CREATE를 해준다.

 

CREATE를 해주면 Client ID를 발급 받을 수 있다.

 

위에서 확인한 Client ID and Client Secret을 아래 코드에 각각 입력한 뒤, 접근 토큰을 받으면 이제 Web API 사용이 가능하다!

 

Sys.setenv(SPOTIFY_CLIENT_ID = '')
Sys.setenv(SPOTIFY_CLIENT_SECRET = '')
access_token <- get_spotify_access_token()

 

이제 Spotify를 활용할 준비가 완료 되었다.

728x90
Comments