gpt4 book ai didi

python - 如何使用 python 为 Sabre Dev Network 执行 oauth2?

转载 作者:行者123 更新时间:2023-11-28 17:40:42 24 4
gpt4 key购买 nike

我正在尝试从 Sabre Dev Studio 获取身份验证 token 。我遵循此处给出的一般说明 https://developer.sabre.com/docs/read/rest_basics/authentication (需要登录才能查看)但我不知道如何使用 Python 获取 token - 特别是使用 python-oauth2 库,因为它似乎被推荐来简化过程。

这是我的代码示例:

config = ConfigParser.ConfigParser()
config.read("conf.ini")
clientID = config.get('DEV', 'Key').strip()
clientSecret = config.get('DEV', 'SharedSecret').strip()

consumer = oauth.Consumer(key=base64.b64encode(clientID),
secret=base64.b64encode(clientSecret))

# Request token URL for Sabre.
request_token_url = "https://api.sabre.com/v1/auth/token"

# Create our client.
client = oauth.Client(consumer)

# create headers as per Sabre Dev Guidelines https://developer.sabre.com/docs/read/rest_basics/authentication
headers = {'Content-Type':'application/x-www-form-urlencoded'}
params = {'grant_type':'client_credentials'}

# The OAuth Client request works just like httplib2 for the most part.
resp, content = client.request(request_token_url, "POST", headers=headers)

print resp
print content

响应类型为 401。凭据不完整或格式错误。任何建议表示赞赏。

最佳答案

首先获取您的凭据:

  1. 注册https://developer.sabre.com/member/register
  2. 登录 https://developer.sabre.com
  3. 转到 https://developer.sabre.com/apps/mykeys并获取您的凭据。它们应该看起来像这样(垃圾邮件和鸡蛋看起来像垃圾):

    client_id = 'V1:spam:DEVCENTER:EXT'
    client_secret = 'eggs'

然后调用/v2/auth/token 端点以获得访问 token :

import requests
credentials = ":".join([part.encode('base64').strip()
for part in (client_id, client_secret)]
).encode('base64').strip()

url = 'https://api.test.sabre.com/v2/auth/token'
headers = {'Authorization': 'Basic ' + credentials}
params = {'grant_type': 'client_credentials'}

r = requests.post(url, headers=headers, data=params)
assert r.status_code is 200, 'Oops...'
token = r.json()
print(token)

你应该得到这样的东西:

{u'access_token': u'T1RLAQJwPBoAuz...x8zEJg**', 
u'token_type': u'bearer',
u'expires_in': 604800}

现在您可以使用包含您的访问 token 的 Authorization header 调用其他端点。例如,如果您想要支持的国家/地区列表:

headers = {'Authorization': 'Bearer ' + token[u'access_token']}
endpoint = 'https://api.test.sabre.com/v1/lists/supported/countries'
r = requests.get(endpoint, headers=headers)
assert r.status_code is 200, 'Oops...'

print (r.json())

如果一切顺利,您应该会收到受支持国家/地区的列表:

{u'DestinationCountries': [
{u'CountryName': u'Antigua And Barbuda', u'CountryCode': u'AG'},
{u'CountryName': u'Argentina', u'CountryCode': u'AR'},
{u'CountryName': u'Armenia', u'CountryCode': u'AM'},
{u'CountryName': u'Aruba', u'CountryCode': u'AW'},
...
}

关于python - 如何使用 python 为 Sabre Dev Network 执行 oauth2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24730677/

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