问题描述
任何人都知道是否可以访问场地详细信息 https://api.foursquare.com/v2 /venues/VENUE_ID 通过无用户访问?
Anyone know if is possible to access venue details https://api.foursquare.com/v2/venues/VENUE_IDfrom userless access?
我不断收到以下错误:{ "meta": { "code": 400, "errorType": "invalid_auth", "errorDetail": "Missing access credentials. See https://developer.foursquare.com/docs/oauth.html for details." }, "response": {}}
I keep getting the error below:{ "meta": { "code": 400, "errorType": "invalid_auth", "errorDetail": "Missing access credentials. See https://developer.foursquare.com/docs/oauth.html for details." }, "response": {}}
推荐答案
是的.您需要在请求中包括参数client_id
和client_secret
.参见 https://developer.foursquare.com/overview/auth#userless 和 https://developer.foursquare.com/start/search .
Yup. You need to include the parameters client_id
and client_secret
in your request. See https://developer.foursquare.com/overview/auth#userless and https://developer.foursquare.com/start/search for more details.
这篇关于使用无用户访问权限访问场地详细信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!