Назначение лицензий Google Business через Python API - PullRequest
0 голосов
/ 19 сентября 2019

Я пытаюсь автоматизировать создание новых пользователей в нашей организации.

Я могу создать пользователей со следующими фрагментами кода, измененными из одного из быстрых запусков Python.

def authenticate():
    creds = None
    # The file token.pickle stores the user's access and refresh tokens, and is
    # created automatically when the authorization flow completes for the first
    # time.
    if os.path.exists('token.pickle'):
        with open('token.pickle', 'rb') as token:
            creds = pickle.load(token)
    # If there are no (valid) credentials available, let the user log in.
    if not creds or not creds.valid:
        if creds and creds.expired and creds.refresh_token:
            creds.refresh(Request())
        else:
            flow = InstalledAppFlow.from_client_secrets_file(
                'credentials.json', SCOPES)
            creds = flow.run_local_server(port=0)
        # Save the credentials for the next run
        with open('token.pickle', 'wb') as token:
            pickle.dump(creds, token)

    service = build('admin', 'directory_v1', credentials=creds)

    return service

def createUser(config):
    service = authenticate()
    results = service.users().insert(body=config).execute()

    print(results)

Когда я пытаюсь заменить users () на licensing, licenseAssignments или что-то в этом роде, я получаю AttributeError: 'Resource' object has no attribute... ошибок.Есть ли пример назначения лицензий пользователям с Python?Я почти уверен, что у меня есть правильная область действия (https://www.googleapis.com/auth/apps.licensing), но это не проблема.

...