如何获取Yelp访问令牌

时间:2017-01-05 01:56:21

标签: api swift2 yelp

我正在尝试使用yelp fusion api,但似乎无法找出如何格式化url。我已经阅读了入门页面,但不明白。我只需要知道在哪里放什么。这是我到目前为止: https://api.yelp.com/oauth2/token?grant_type=client_credentials&client_id=ID&client_secret="CLIENT SECRET" 当我加载此网址时,它会显示“VALIDATION_ERROR”。我做错了什么?

1 个答案:

答案 0 :(得分:0)

grant_type,client_id和client_secret应该在POST调用中以application / x-www-form-urlencoded格式发送。

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'