0
service.users().update
でユーザーを更新しようとしています。 200の応答を返しますが、何も変更しません。Google AppsユーザーをPythonで更新する
results2 = service.users().update(
userKey='116908937914240107065',
fields='id,name/fullName,primaryEmail',
body='{"primaryEmail":"[email protected]"}'
).execute()
print('id: {0} | Email: {1} | Nome: {2}'.format(results2['id'],results2['primaryEmail'], results2['name']['fullName']))
これを解決Googleのバグ?? –