일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C++
- 프로그래머스
- CS
- SW Expert Academy
- 비트겟
- java
- modern c++
- 파이썬
- 스포티파이
- spotify
- Spring
- python
- spring boot
- SECS-II
- SECS/GEM
- 백준
- Gem
- MYSQL
- SWEA
- Baekjoon
- programmers
- SECS
- 회원가입
- regression
- Spring JPA
- 자바
- 회귀
- c
- Computer Science
- Spotify Api
Archives
- Today
- Total
비버놀로지
[Spotify 스포티파이] 5. Spring Boot 사전준비 본문
728x90
Spring Boot에서 maven을 이용해서 Spotify Api를 활용해 보자.
먼저 application.properties 에 dependences를 추가해 주자.
<dependency>
<groupId>se.michaelthelin.spotify</groupId>
<artifactId>spotify-web-api-java</artifactId>
<version>6.5.2</version>
</dependency>
<dependency>
<groupId>com.github.thelinmichael</groupId>
<artifactId>spotify-web-api-java</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
위의 두개의 dependecy를 application.properties에 추가를 해줘야 spotify api 를 사용할 수 있다.
그리고 jitpack를 추가해 준다.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
그 다음 클래스를 생성을 해서 spotify를 사용하면 된다.
728x90
'OPEN API 활용' 카테고리의 다른 글
[Spotify 스포티파이] 7. Spring Boot 토큰 발행 (0) | 2021.03.25 |
---|---|
[Spotify 스포티파이] 6. Spring Boot 기본 Code (0) | 2021.03.25 |
[Spotify 스포티파이] 4. Spotify Data 추출 (0) | 2021.03.09 |
[Spotify 스포티파이] 3. Spotify OPEN API 특정 artist의 top 10 playlist 가져오기 (0) | 2021.03.09 |
[Spotify 스포티파이] 2. Spotify OPEN API 환경준비 (0) | 2021.03.09 |
Comments