Rate Limiting
: 어떤 유저가 1초에 몇 만개의 Request를 보내면 서버가 부하가 되니 제한을 시켜놓은 것
Response Status Codes
: 요청 시 요청 값에 대해 어떤 식으로 나오는지에 대한 코드
API 코드 예시
ex) curl -X GET "https://api.spotify.com/v1/artists/0OdUWJ0sBjDrqHygGUXeCF" -H "Authorization: Bearer {your access token}"
을 보내면
이런 식의 Json 파일을 Response 받을 수 있음
참조: developer.spotify.com/documentation/web-api/reference/artists/get-artist/
API 실습
1. spotify Docs guide로 간다.
2. 밑으로 내려가서 wep API client credentials flow 를 살펴본다
- flow
반응형
'DevOps study' 카테고리의 다른 글
Airflow 기초 (0) | 2022.01.11 |
---|---|
Class 개념과 상속 (0) | 2021.07.12 |
Pyqt 기초 문법 (0) | 2021.03.11 |
REST API (Application programming Interface) 정리 (0) | 2020.12.25 |