我刚刚注册了我的测试应用程序并获得了 Api 密钥和 Api 密码。我正在尝试使用 Python SDK 发送请求:
from amadeus import Client, ResponseError
amadeus1 = Client(
client_id='my_API_key_here',
client_secret='my_secret_key_here'
)
response = amadeus1.reference_data.locations.airports.get(longitude=49.000, latitude=2.55)
print(response.data)
我收到网络错误。我究竟做错了什么?