我正在尝试遵循官方的Uber Surge确认流程,但是我显然做错了事:
curl -X POST \
-H 'Authorization: Bearer <myOAuthToken>' \
-H 'Accept-Language: en_US' \
-H 'Content-Type: application/json' \
-d '{"start_latitude": 51.51946,"start_longitude": -0.11698851, "end_latitude": 51.51584, "end_longitude": -0.11361008, "product_id": "3cb90303-3869-4701-a8fd-92efba468a94"}' "https://api.uber.com/v1.2/requests/estimate"
estimate.surge_confirmation_href
字段中打开从上述端点返回的Surge URL。但是,该URL不会提供标准的“ confirm the Surge” HTML对话框,而是返回以下JSON响应:{"code":"service_unavailable","message":"Service Unavailable."}
我白天已经尝试过多次,并且总是得到相同的答复。
我在做什么错?
谢谢!