승인 필요
기존 보기 (프로필)를 업데이트합니다. 이 메서드는 패치 시맨틱스를 지원합니다. 지금 사용해 보거나 예시를 확인하세요.
이 방법은 표준 매개변수 외에도 매개변수 표에 나열된 매개변수를 지원합니다.
요청
HTTP 요청
PATCH https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles/profileId
매개변수
매개변수 이름 | 값 | 설명 |
---|---|---|
경로 매개변수 | ||
accountId |
string |
보기 (프로필)가 속한 계정 ID |
profileId |
string |
업데이트할 보기 (프로필)의 ID입니다. |
webPropertyId |
string |
보기 (프로필)가 속한 웹 속성 ID |
승인
이 요청에는 다음 범위의 승인이 필요합니다 (인증 및 승인 자세히 알아보기).
범위 |
---|
https://www.googleapis.com/auth/analytics.edit |
요청 본문
요청 의미에서 패치 시맨틱스의 규칙에 따라 management.profile 리소스의 관련 부분을 제공합니다.
응답
요청에 성공하면 이 메서드가 응답 본문에서 management.profile 리소스를 반환합니다.
예
참고: 이 메서드에 제공되는 코드 예시가 지원되는 모든 프로그래밍 언어를 나타내는 것은 아닙니다. 지원되는 언어 목록은 클라이언트 라이브러리 페이지를 참조하세요.
자바
자바 클라이언트 라이브러리를 사용합니다.
/* * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Developer Guide for details. */ /* * This request patches an existing View (Profile). */ // Construct the body of the request. Profile body = new Profile(); body.setECommerceTracking(true); body.setEnhancedECommerceTracking(true); body.setTimezone("America/Chicago"); try { analytics.management().profiles().patch("123456", "UA-123456-1", "7654321", body).execute(); } catch (GoogleJsonResponseException e) { System.err.println("There was a service error: " + e.getDetails().getCode() + " : " + e.getDetails().getMessage()); }
PHP
/** * Note: This code assumes you have an authorized Analytics service object. * See the View (Profile) Dev Guide for details. */ /** * This request patches an existing view (profile). */ // Construct the body of the request. $profile = new Google_Service_Analytics_Profile(); $profile->setName('eCommerce View'); $profile->setECommerceTracking(True); $profile->setEnhancedECommerceTracking(True); try { $analytics->management_profiles->patch('123456', 'UA-123456-1', '7654321', $profile); } 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 View (Profile) Developer Guide for details. # This request patches an existing View (Profile). try: analytics.management().profiles().patch( accountId='123456', webPropertyId='UA-123456-1', profileId='7654321', body={ 'eCommerceTracking': True, 'enhancedECommerceTracking': True, 'timezone': 'America/Chicago' } ).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))
자바스크립트
자바스크립트 클라이언트 라이브러리를 사용합니다.
/* * Note: This code assumes you have an authorized Analytics client object. * See the View (Profiles) Developer Guide for details. */ /* * This request patches an existing view (profile). */ function patchView() { var request = gapi.client.analytics.management.profiles.patch( { 'accountId': '123456', 'webPropertyId': 'UA-123456-1', 'profileId': '7654321', 'resource': { 'eCommerceTracking': true, 'timezone': 'America/Chicago' } }); request.execute(function (response) { // Handle the response. }); }
사용해 보기
아래의 API 탐색기를 사용하여 실시간 데이터를 대상으로 이 메소드를 호출하고 응답을 확인해 보세요. 또는 독립형 탐색기를 사용해 보세요.