1

FourSquare API 文档声明它支持 CORS。但是调用 /users/ 端点清楚地表明只支持 GET 请求:

curl -X OPTIONS -i "https://api.foursquare.com/v2/users/self/checkins?oauth_token=CLIENT_OAUTH_TOKEN"

HTTP/1.1 405 Method Not Allowed
Access-Control-Allow-Origin: *
Cache-Control: no-cache, private, no-store
Content-Type: application/json; charset=utf-8
Date: Wed, 13 Feb 2013 04:31:54 GMT
Expires: Wed, 13 Feb 2013 04:31:54 GMT
Pragma: no-cache
Server: nginx/1.2.1
Tracer-Time: 17
Content-Length: 104
Connection: keep-alive

{"meta":{"code":405,"errorType":"other","errorDetail":"This endpoint only supports GET."},"response":{}}

这只是这些 API 端点特有的还是发生了一些变化?

4

1 回答 1

1

我没有研究 FourSquare API 中的所有方法,但我猜 FourSquare 不需要支持预检请求,因为它们的所有 API 请求都很简单。此处的文档建议 API 仅支持 GET 和 POST。如果这些请求没有任何自定义标头,则它们永远不需要预检请求。

于 2013-02-13T15:53:55.283 回答