Listet Kontozusammenfassungen (einfache Baumansicht mit Konten/Properties/Profilen) auf, auf die der Nutzer Zugriff hat. Jetzt ausprobieren oder Beispiel ansehen
Anfragen
HTTP-Anfrage
GET https://www.googleapis.com/analytics/v3/management/accountSummaries
Parameter
Parametername | Wert | Beschreibung |
---|---|---|
Optionale Suchparameter | ||
max-results |
integer |
Die maximale Anzahl von Kontozusammenfassungen, die in diese Antwort aufgenommen werden können, wobei der größte zulässige Wert 1.000 ist. |
start-index |
integer |
Ein Index der ersten abzurufenden Entität. Verwenden Sie diesen Parameter als Paginierungsmechanismus zusammen mit dem Parameter „max-results“. |
Autorisierung
Diese Anfrage benötigt eine Autorisierung mit mindestens einem der folgenden Bereiche (weitere Informationen zu Authentifizierung und Autorisierung).
Umfang |
---|
https://www.googleapis.com/auth/analytics.edit |
https://www.googleapis.com/auth/analytics.readonly |
Anfragetext
Mit dieser Methode keinen Anfragetext bereitstellen.
Antwort
Bei Erfolg gibt diese Methode einen Antworttext mit der folgenden Struktur zurück:
{ "kind": "analytics#accountSummaries", "username": string, "totalResults": integer, "startIndex": integer, "itemsPerPage": integer, "previousLink": string, "nextLink": string, "items": [ management.accountSummaries Resource ] }
Name der Eigenschaft | Wert | Beschreibung | Hinweise |
---|---|---|---|
kind |
string |
Sammlungstyp. | |
username |
string |
E-Mail-ID des authentifizierten Nutzers | |
totalResults |
integer |
Die Gesamtzahl der Ergebnisse für die Abfrage, unabhängig von der Anzahl der Ergebnisse in der Antwort. | |
startIndex |
integer |
Der Startindex der Ressourcen, der standardmäßig 1 ist oder vom Startindex-Abfrageparameter angegeben wird. | |
itemsPerPage |
integer |
Die maximale Anzahl von Ressourcen, die die Antwort enthalten kann, unabhängig von der tatsächlichen Anzahl der zurückgegebenen Ressourcen. Sein Wert reicht von 1 bis 1000, wobei der Wert standardmäßig 1000 beträgt oder anderweitig durch den Abfrageparameter "max-results" angegeben wird. | |
previousLink |
string |
Link zur vorherigen Seite für diese AccountSummary-Sammlung. | |
nextLink |
string |
Link zur nächsten Seite für diese AccountSummary-Sammlung. | |
items[] |
list |
Eine Liste der AccountSummaries. |
Beispiele
Hinweis: Bei den für diese Methode verfügbaren Codebeispielen sind nicht alle unterstützten Programmiersprachen vertreten. Eine Liste der unterstützten Sprachen finden Sie auf der Seite für Clientbibliotheken.
Java
Verwendet die Java-Clientbibliothek.
/** * 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()); } }
PHP
Die PHP-Clientbibliothek wird verwendet.
/** * 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
Verwendet die Python-Clientbibliothek.
# 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
Verwendet die JavaScript-Clientbibliothek.
/* * 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); } }
Testen!
Verwenden Sie den unten angegebenen APIs Explorer, um diese Methode für Livedaten aufzurufen und die Antwort einzusehen. Alternativ können Sie den eigenständigen Explorer ausprobieren.