Webproperty User Links: update

Richiede l'autorizzazione

Aggiorna le autorizzazioni di un utente esistente sulla proprietà web specificata. Prova subito o visualizza un esempio.

Oltre ai parametri standard, questo metodo supporta quelli elencati nella tabella dei parametri.

Richiesta

Richiesta HTTP

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

Parametri

Nome del parametro Valore Descrizione
Parametri del percorso
accountId string ID account per il quale aggiornare il collegamento utente account.
linkId string ID collegamento per cui aggiornare il collegamento utente account.
webPropertyId string ID proprietà web per cui aggiornare il collegamento utente account.

Autorizzazione

Questa richiesta richiede l'autorizzazione con il seguente ambito (scopri di più su autenticazione e autorizzazione).

Ambito
https://www.googleapis.com/auth/analytics.manage.users

Corpo della richiesta

Nel corpo della richiesta, fornisci una risorsa management.entityUserLink.

Risposta

Se l'operazione ha esito positivo, questo metodo restituisce una risorsa management.entityUserLink nel corpo della risposta.

Esempi

Nota: gli esempi di codice disponibili per questo metodo non rappresentano tutti i linguaggi di programmazione supportati (consulta la pagina relativa alle librerie client per un elenco dei linguaggi supportati).

Java

Utilizza la libreria client 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 Property User Link.
 */

// Construct the permissions object along with the list of permissions.
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().webpropertyUserLinks().update("123456", "UA-123456-1",
      "UA-123456-1:1111222233334444", body).execute();
} catch (GoogleJsonResponseException e) {
  System.err.println("There was a service error: "
      + e.getDetails().getCode() + " : "
      + e.getDetails().getMessage());
}

PHP

Utilizza la libreria client PHP.

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


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

// Create the property link.
$link = new Google_Service_Analytics_EntityUserLink();
$link->setPermissions($permissions);

// This request updates an existing property User Link.
try {
  $analytics->management_webpropertyUserLinks->update('123456', 'UA-123456-1',
      'UA-123456-1:1111222233334444', $link);
} 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

Utilizza la libreria client 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 Property User Link.
try:
  analytics.management().webpropertyUserLinks().update(
      accountId='123456',
      webPropertyId='UA-123456-1',
      linkId='UA-123456-1: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

Utilizza la libreria client 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 Property User Link.
 */
function updatePropertyUserLink() {
  var request = gapi.client.analytics.management.webpropertyUserLinks.update(
    {
      'accountId': '123456',
      'webPropertyId': 'UA-123456-1',
      'linkId': 'UA-123456-1:1111222233334444',
      'resource': {
        'permissions': {
          'local': ['READ_AND_ANALYZE']
        }
      }
    });
  request.execute(function (response) { // Handle the response. });
}

Prova.

Utilizza Explorer API di seguito per chiamare questo metodo sui dati in tempo reale e visualizzare la risposta. In alternativa, prova a utilizzare Explorer in modalità autonoma.