0
Yelp API에서 액세스 토큰을 얻으려는 중이고 요청에 대한 설명서와 개발자 페이지의 지침을 읽었으며 요청할 때 반환합니다. {"error": {"code": "VALIDATION_ERROR", "description": "/oauth2/token/"}}
옐프 개발자 페이지에서 오류 코드를 찾았지만이 오류 코드를 찾지 못했습니다.게시물 요청을 할 때 Yelp API Validation_Error
import json
from pip._vendor import requests
clientID= 'my id as a string'
clientSecret ='my secret as a string'
par = {'grant_type' : 'client_credentials', 'client_id':clientID,'client_secret':clientSecret}
content = requests.post('https://api.yelp.com/oauth2/token/',params=par)
print(content.text)
누군가가 잘못된 것을 알 수 있습니까? 미리 감사드립니다.