승인 필요
사용자가 액세스할 수 있는 계정 요약 (계정/속성/프로필로 구성된 간단한 트리)을 나열합니다. 지금 사용해 보기 또는 예시를 확인하세요.
요청
HTTP 요청
GET https://www.googleapis.com/analytics/v3/management/accountSummaries
매개변수
매개변수 이름 | 값 | 설명 |
---|---|---|
선택적 쿼리 매개변수 | ||
max-results |
integer |
이 응답에 포함할 계정 요약의 최대 개수이며, 허용되는 가장 큰 값은 1,000입니다. |
start-index |
integer |
검색할 첫 번째 항목의 색인입니다. 이 매개변수를 max-results 매개변수와 함께 페이지로 나누기 메커니즘으로 사용합니다. |
승인
이 요청에는 다음 범위 중 최소 하나를 사용하여 인증이 필요합니다. (인증 및 승인에 대해 자세히 알아보기)
범위 |
---|
https://www.googleapis.com/auth/analytics.edit |
https://www.googleapis.com/auth/analytics.readonly |
요청 본문
이 메소드를 사용할 때는 요청 본문을 제공하지 마세요.
응답
요청에 성공할 경우 이 메소드는 다음과 같은 구조의 응답 본문을 반환합니다.
{ "kind": "analytics#accountSummaries", "username": string, "totalResults": integer, "startIndex": integer, "itemsPerPage": integer, "previousLink": string, "nextLink": string, "items": [ management.accountSummaries Resource ] }
속성 이름 | 값 | 설명 | Notes |
---|---|---|---|
kind |
string |
컬렉션 유형 | |
username |
string |
인증된 사용자의 이메일 ID | |
totalResults |
integer |
응답의 결과 수와 관계없이 쿼리의 총 결과 수입니다. | |
startIndex |
integer |
리소스의 시작 색인으로, 기본값은 1이거나 시작 색인 쿼리 매개변수로 지정됩니다. | |
itemsPerPage |
integer |
반환되는 실제 리소스 수와 관계없이 응답에 포함할 수 있는 최대 리소스 수입니다. 값의 범위는 1~1,000이며 기본값은 1,000이거나 max-results 쿼리 매개변수로 지정됩니다. | |
previousLink |
string |
이 AccountSummary 컬렉션의 이전 페이지 링크입니다. | |
nextLink |
string |
이 AccountSummary 컬렉션의 다음 페이지로 연결되는 링크입니다. | |
items[] |
list |
AccountSummaries의 목록입니다. |
예
참고: 이 메서드에 제공되는 코드 예시가 지원되는 모든 프로그래밍 언어를 나타내는 것은 아닙니다. 지원되는 언어 목록은 클라이언트 라이브러리 페이지를 참조하세요.
Java
자바 클라이언트 라이브러리를 사용합니다.
/** * Note: This code assumes you have an authorized Analytics service object. * See the Account Summaries Developer Guide for details. */ /** * Example #1: * Requests a list of all account summaries for the authorized user. */ try { AccountSummaries accountSummaries = service.management(). accountSummaries().list().execute(); } catch (IOException e) { System.out.println("An error occurred: " + e); } /** * Example #2: * The results of the list method are stored in the accountSummaries object. * The following code shows how to iterate through them. **/ public static void printAccountSummaries(AccountSummaries accountSummaries) { for (AccountSummary account : accountSummaries.getItems()) { System.out.println(account.getName() + " (" + account.getId() + ")"); printPropertySummaries(account); } } private static void printPropertySummaries(AccountSummary accountSummary) { for (WebPropertySummary property : accountSummary.getWebProperties()) { System.out.println(" " + property.getName() + " (" + property.getId() + ")"); System.out.println(" [" + property.getWebsiteUrl() + " | " + property.getLevel() + "]"); printProfileSummary(property); } } private static void printProfileSummary(WebPropertySummary webPropertySummary) { for (ProfileSummary profile : webPropertySummary.getProfiles()) { System.out.println(" " + profile.getName() + " (" + profile.getId() + ") | " + profile.getType()); } }
2,399필리핀
PHP 클라이언트 라이브러리를 사용합니다.
/** * Note: This code assumes you have an authorized Analytics service object. * See the Account Summaries Developer Guide for details. */ /** * Example #1: * Requests a list of all account summaries for the authorized user. */ try { $accounts = $analytics->management_accountSummaries ->listManagementAccountSummaries(); } 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(); } /** * Example #2: * The results of the list method are stored in the accounts object. * The following code shows how to iterate through them. */ foreach ($accounts->getItems() as $account) { $html = <<<HTML <pre> Account id = {$account->getId()} Account kind = {$account->getKind()} Account name = {$account->getName()} HTML; // Iterate through each Property. foreach ($account->getWebProperties() as $property) { $html .= <<<HTML Property id = {$property->getId()} Property kind = {$property->getKind()} Property name = {$property->getName()} Internal property id = {$property->getInternalWebPropertyId()} Property level = {$property->getLevel()} Property URL = {$property->getWebsiteUrl()} HTML; // Iterate through each view (profile). foreach ($property->getProfiles() as $profile) { $html .= <<<HTML Profile id = {$profile->getId()} Profile kind = {$profile->getKind()} Profile name = {$profile->getName()} Profile type = {$profile->getType()} HTML; } } $html .= '</pre>'; print $html; }
Python
Python 클라이언트 라이브러리를 사용합니다.
# Note: This code assumes you have an authorized Analytics service object. # See the Account Summaries Developer Guide for details. # Example #1: # Requests a list of all account summaries for the authorized user. try: account_summaries = analytics.management().accountSummaries().list().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)) # Example #2: # The results of the list method are stored in the account_summaries object. # The following code shows how to iterate through them. for account in account_summaries.get('items', []): print '\n%s (%s)' % (account.get('name'), account.get('id')) print_property_summaries(account) def print_property_summaries(account_summary): if account_summary: for property in account_summary.get('webProperties', []): print ' %s (%s)' % (property.get('name'), property.get('id')) print ' [%s | %s]' % (property.get('websiteUrl'), property.get('level')) print_profile_summary(property) def print_profile_summary(property_summary): if property_summary: for profile in property_summary.get('profiles', []): print ' %s (%s) | %s' % (profile.get('name'), profile.get('id'), profile.get('type'))
JavaScript
JavaScript 클라이언트 라이브러리를 사용합니다.
/* * Note: This code assumes you have an authorized Analytics client object. * See the Account Summaries Developer Guide for details. */ /* * Example 1: * Requests a list of all account summaries for the authorized user. */ function listAccountSummaries() { var request = gapi.client.analytics.management.accountSummaries.list(); request.execute(handleResponse); } /* * Example 2: * The results of the list method are passed as the response object. * The following code shows how to iterate through them. */ function handleResponse(response) { if (response && !response.error) { if (response.items) { printAccountSummaries(response.items); } } else { console.log('There was an error: ' + response.message); } } function printAccountSummaries(accounts) { for (var i = 0, account; account = accounts[i]; i++) { console.log('Account id: ' + account.id); console.log('Account name: ' + account.name); console.log('Account kind: ' + account.kind); // Print the properties. if (account.webProperties) { printProperties(account.webProperties); } } } function printProperties(properties) { for (var j = 0, property; property = properties[j]; j++) { console.log('Property id: ' + property.id); console.log('Property name: ' + property.name); console.log('Property kind: ' + property.kind); console.log('Internal id: ' + property.internalWebPropertyId); console.log('Property level: ' + property.level); console.log('Property url: ' + property.websiteUrl); // Print the views (profiles). if (property.profiles) { printProfiles(property.profiles); } } } function printProfiles(profiles) { for (var k = 0, profile; profile = profiles[k]; k++) { console.log('Profile id: ' + profile.id); console.log('Profile name: ' + profile.name); console.log('Profile kind: ' + profile.kind); console.log('Profile type: ' + profile.type); } }
사용해 보기
아래의 API 탐색기를 사용하여 실시간 데이터를 대상으로 이 메소드를 호출하고 응답을 확인해 보세요. 또는 독립형 탐색기를 사용해 보세요.