我正在尝试使用yelp fusion api,但似乎找不到如何格式化url。我已经阅读了入门页面,但不理解它。我只需要知道在哪里放什么。这是我目前所拥有的:https://api.yelp.com/oauth2/token?grant_type=client_credentials&client_id=ID&client_secret="CLIENT SECRET"当我加载这个url时,它显示“VALIDATION_ERROR”。我做错了什么?
https://api.yelp.com/oauth2/token?grant_type=client_credentials&client_id=ID&client_secret="CLIENT SECRET"
pnwntuvh1#
应在POST调用中以application/x-www-form-urlencoded格式发送授权类型、客户端ID和客户端机密。
curl -X POST \ https://api.yelp.com/oauth2/token \ -H 'cache-control: no-cache' \ -H 'content-type: application/x-www-form-urlencoded' \ -d 'grant_type=client_credentials&client_id=CLIENT_ID&client_secret=CLIENT_SECRET'
1条答案
按热度按时间pnwntuvh1#
应在POST调用中以application/x-www-form-urlencoded格式发送授权类型、客户端ID和客户端机密。