gpt4 book ai didi

python - 尝试通过 API 将成员添加到 Google 群组时获取 'Missing required field: member'

转载 作者:行者123 更新时间:2023-11-28 16:33:50 24 4
gpt4 key购买 nike

尝试使用 Google 管理目录 API 来读取 Google 组(组织)的成员 - 它工作正常。当我尝试添加成员时,我得到:

{ errors: 
[ { domain: 'global',
reason: 'required',
message: 'Missing required field: member' } ],
code: 400,
message: 'Missing required field: member' }

我用谷歌搜索了错误并找到了类似 this 的问题, this以及其他一些无用的结果。

我检查过,它绝对不是缺少范围或权限。

#!/usr/bin/python
import httplib2
import json
from oauth2client.client import SignedJwtAssertionCredentials
from urllib import urlencode


def get_group_members(group):
url = 'https://www.googleapis.com/admin/directory/v1/groups/{}/members'.format(group['email'])
return call_google_api("GET", url)


def add_group_member(group, payload=False):
url = 'https://www.googleapis.com/admin/directory/v1/groups/{}/members'.format(group)
return call_google_api("POST", url, payload)


def call_google_api(method, url, payload=False):
content = {}
try:
http = get_conn()
if payload:
(resp, content) = http.request(uri=url, method=method, body=urlencode(payload))
else:
(resp, content) = http.request(uri=url, method=method)
except Exception as e:
print "Failed to post request to [{}] due to: {}".format(url, e)
return json.loads(content)

def get_conn():
client_email = get_client_email_from_db()
with open(get_private_key_filename()) as f:
private_key = f.read()

oauth_scope = ['https://www.googleapis.com/auth/admin.directory.group.member',
'https://www.googleapis.com/auth/admin.directory.group',
]

credentials = SignedJwtAssertionCredentials(client_email, private_key, oauth_scope, sub='googleapi@organization.com')
http = httplib2.Http()
return credentials.authorize(http)


if __name__ == '__main__':
payload = {
"email": "test-user@organization.com",
"role": "MEMBER",
}
print "\n ---------------------------------- \n"
print "calling add_group_member('test-user@organization.com', 'test-group@organization.com')"
res = add_group_member("test-group@organization.com", payload)
print "\n ---------------------------------- \n"

评论:
我设法通过使用 sdk apiclient.discovery.build 实现了我想要的,但仍然 - 我很好奇,问题是什么,是否可以解决。

调试请求:

connect: (www.googleapis.com, 443)
send: 'POST /admin/directory/v1/groups/xxxx@xxxx.com/members HTTP/1.1\r\nHost: www.googleapis.com\r\nContent-Length: 38\r\ncontent-type: application/json\r\naccept-encoding: gzip, deflate\r\nauthorization: Bearer ya29.RAFzf3hyxvP0LuR4VdpqKr_dD0WzOcvXjn4eWV5Em6xJDissi4ieOZ2ZBRMOP-WLhvTrecBxgF_6sznc1GKSWHanvgYTh_EzcilsAN0f5jOiiMahOadG2v5ixBPL9GcqebRdz_kQc1y2iQ\r\nuser-agent: Python-httplib2/0.9 (gzip)\r\n\r\nrole=MEMBER&email=alfasi%40xxxx.com'
reply: 'HTTP/1.1 400 Bad Request\r\n'
header: Vary: Origin
header: Vary: X-Origin
header: Content-Type: application/json; charset=UTF-8
header: Content-Encoding: gzip
header: Date: Sat, 28 Mar 2015 23:14:47 GMT
header: Expires: Sat, 28 Mar 2015 23:14:47 GMT
header: Cache-Control: private, max-age=0
header: X-Content-Type-Options: nosniff
header: X-Frame-Options: SAMEORIGIN
header: X-XSS-Protection: 1; mode=block
header: Server: GSE
header: Alternate-Protocol: 443:quic,p=0.5
header: Transfer-Encoding: chunked

最佳答案

由于 google API 使用(仅?)JSON 编码,您的帖子数据未被解析为所需的成员对象。您已经为响应加载了 json,因此您只需要更改编码,并可选择显式指示它:

 if payload:
(resp, content) = http.request(uri=url, method=method, body=urlencode(payload))
# becomes:
if payload:
(resp, content) = http.request(uri=url, method=method, body=json.dumps(payload), headers={'Content-type':'application/json'})

关于python - 尝试通过 API 将成员添加到 Google 群组时获取 'Missing required field: member',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29105310/

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