gpt4 book ai didi

python - 优步 API : request_ride with sandbox_mode=True is throwing error message

转载 作者:行者123 更新时间:2023-11-28 22:39:57 26 4
gpt4 key购买 nike

request_ride with sandbox_mode=True 抛出错误信息。以下是我的代码和整个错误消息。

#Python 3.x
from uber_rides.session import Session
from uber_rides.client import UberRidesClient
session = Session(server_token="something-special")
client = UberRidesClient(session,sandbox_mode=True)
#UberX product id
product_id = '04a497f5-380d-47f2-bf1b-ad4cfdcb51f2'
response = client.request_ride(product_id, 37.77, -122.41, 37.79, -122.41)
ride_details = response.json
ride_id = ride_details.get('request_id')
response = client.update_sandbox_ride(ride_id, 'accepted')
print(response)

#error message
...
...
uber_rides.errors.ClientError: The request contains bad syntax or
cannot be filled due to a fault from the client sending the request.

最佳答案

您收到 4XX ClientError,因为您正尝试使用服务器 token 请求乘车。如果您处理错误并检查它,您将看到它是一个 401: Unauthorized error

为了请求乘车,您需要获得具有 request 范围的 OAuth2 访问 token 。

服务器 token 可以访问产品、时间估算和价格估算等端点。要访问更多 protected 资源,如用户事件或请求端点,您需要遵循 OAuth2 到 get an access token .

还有一个 OAuth2 Authorization example在 Uber 的 Python SDK 中。

关于python - 优步 API : request_ride with sandbox_mode=True is throwing error message,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34181363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com