我正在使用https://flask-oauthlib.readthedocs.io/en/latest/来处理 Google OAuth API。我能够连接和检索用户数据。但仍然面临获取用户组织名称的问题。
根据文档https://developers.google.com/admin-sdk/directory/v1/guides/manage-users,API 应该返回组织名称。
“组织”:[{“名称”:“谷歌公司”,“标题”:“SWE”,
“主要”:true,“customType”:“”,“描述”:“软件工程师”}],
但随着
SCOPES_ORGANISATIONS = ("https://www.googleapis.com/auth/admin.directory.user.readonly "
"https://www.googleapis.com/auth/admin.directory.orgunit.readonly")
app_ = oauth.remote_app(
'google',
consumer_key=GOOGLE_CLIENT_ID,
consumer_secret=GOOGLE_CLIENT_SECRET,
request_token_params={'scope': f'email profile {SCOPES_ORGANISATIONS}', 'prompt': 'login'},
base_url='https://www.googleapis.com/oauth2/v1/',
request_token_url=None,
access_token_method='POST',
access_token_url='https://accounts.google.com/o/oauth2/token',
authorize_url='https://accounts.google.com/o/oauth2/auth')
GOOGLE_DIRECTORY_API = "https://www.googleapis.com/admin/directory/v1/users/{user_email}"
def get_profile(app_):
url = GOOGLE_DIRECTORY_API.format(user_email=email)
ret = app_.get(url)
logger.info("Google api %s return, %r", url, ret.data)
name = ret.data["organizations"][0]["name"]
logger.info("Company name, %r", name)
return name
返回的结果看起来像
{
"kind": "admin#directory#user",
"id": "xxxxxxxxxxxxxxx",
"etag": "",
"primaryEmail": "ali@xxxxxxx",
"name": {
"givenName": "Ali",
"familyName": "xxxxx",
"fullName": "xxxxx"
},
"isAdmin": true,
"isDelegatedAdmin": false,
"lastLoginTime": "2019-01-31T10:03:27.000Z",
"creationTime": "2019-01-31T08:19:26.000Z",
"agreedToTerms": true,
"suspended": false,
"archived": false,
"changePasswordAtNextLogin": false,
"ipWhitelisted": false,
"emails": [
{
"address": "xxxxx",
"primary": true
},
{
"address": "xxxxx"
}
],
"nonEditableAliases": [
"xxxxxx"
],
"customerId": "xxxxxxxx",
"orgUnitPath": "/",
"isMailboxSetup": true,
"isEnrolledIn2Sv": false,
"isEnforcedIn2Sv": false,
"includeInGlobalAddressList": true
}