Account User Links: update

승인 필요

지정된 계정의 기존 사용자에 대한 권한을 업데이트합니다. 지금 사용해 보거나 예를 참조하세요.

이 방법은 표준 매개변수 외에도 매개변수 표에 나열된 매개변수를 지원합니다.

요청

HTTP 요청

PUT https://www.googleapis.com/analytics/v3/management/accounts/accountId/entityUserLinks/linkId

매개변수

매개변수 이름 설명
경로 매개변수
accountId string 계정-사용자 링크를 업데이트할 계정 ID입니다.
linkId string 계정-사용자 링크를 업데이트할 링크 ID입니다.

승인

이 요청을 처리하려면 다음 범위의 승인을 받아야 합니다 (인증 및 승인에 대해 자세히 알아보기).

범위
https://www.googleapis.com/auth/analytics.manage.users

요청 본문

요청 본문에 management.entityUserLink 리소스를 제공합니다.

대응

요청에 성공할 경우 이 메서드는 응답 본문에 management.entityUserLink 리소스를 반환합니다.

참고: 이 메서드에 제공되는 코드 예시가 지원되는 모든 프로그래밍 언어를 나타내는 것은 아닙니다. 지원되는 언어 목록은 클라이언트 라이브러리 페이지를 참조하세요.

Java

자바 클라이언트 라이브러리를 사용합니다.

/*
 * Note: This code assumes you have an authorized Analytics service object.
 * See the User Permissions Developer Guide for details.
 */

/*
 * This request updates an existing Account User Link.
 */

// Construct the permissions object.
Permissions permissions = new Permissions();
List<String> local = Arrays.asList("EDIT");
permissions.setLocal(local);

// Construct the body of the request.
EntityUserLink body = new EntityUserLink();
body.setPermissions(permissions);

try {
  analytics.management().accountUserLinks().update("123456",
      "123456:11112222333344445555", body).execute();
} catch (GoogleJsonResponseException e) {
  System.err.println("There was a service error: "
      + e.getDetails().getCode() + " : "
      + e.getDetails().getMessage());
}

2,399필리핀

PHP 클라이언트 라이브러리를 사용합니다.

/**
* Note: This code assumes you have an authorized Analytics service object.
* See the User Permissions Developer Guide for details.
*/

// Create the user reference.
$userRef = new Google_Service_Analytics_UserRef();
$userRef->setEmail('liz@gmail.com');

// Create the permissions object.
$permissions = new Google_Service_Analytics_EntityUserLinkPermissions();
$permissions->setLocal(array('COLLABORATE', 'READ_AND_ANALYZE'));

// Create the user link.
$userLink = new Google_Service_Analytics_EntityUserLink();
$userLink->setPermissions($permissions);
$userLink->setUserRef($userRef);

// This request updates an existing Account User Link.
try {
  $accounts = $analytics->management_accountUserLinks->update('123456',
      '123456:111222333444555',
      $userLink);
} catch (apiServiceException $e) {
  print 'There was an Analytics API service error '
      . $e->getCode() . ':' . $e->getMessage();

} catch (apiException $e) {
  print 'There was a general API error '
      . $e->getCode() . ':' . $e->getMessage();
}


Python

Python 클라이언트 라이브러리를 사용합니다.

# Note: This code assumes you have an authorized Analytics service object.
# See the User Permissions Developer Guide for details.

# This request updates an existing Account User Link.
try:
  analytics.management().accountUserLinks().update(
      accountId='123456',
      linkId='123456:1111222233334444',
      body={
          'permissions': {
              'local': [
                  'EDIT'
              ]
          },
      }
  ).execute()

except TypeError, error:
  # Handle errors in constructing a query.
  print 'There was an error in constructing your query : %s' % error

except HttpError, error:
  # Handle API errors.
  print ('There was an API error : %s : %s' %
         (error.resp.status, error.resp.reason))

JavaScript

JavaScript 클라이언트 라이브러리 사용

/*
 * Note: This code assumes you have an authorized Analytics client object.
 * See the User Permissions Developer Guide for details.
 */

/*
 * This request updates an existing Account User Link.
 */
function updateAccountUserLink() {
  var request = gapi.client.analytics.management.accountUserLinks.update(
    {
      'accountId': '123456',
      'linkId': '123456:1111222233334444',
      'resource': {
        'permissions': {
          'local': ['READ_AND_ANALYZE']
        }
      }
    });
  request.execute(function (response) { // Handle the response. });
}

사용해 보기

아래의 API 탐색기를 사용하여 실시간 데이터를 대상으로 이 메소드를 호출하고 응답을 확인해 보세요. 또는 독립형 탐색기를 사용해 보세요.