Tags: list

승인 필요

컨테이너의 모든 GTM 태그를 나열합니다. 지금 사용해 보기 또는 예시를 확인하세요.

요청

HTTP 요청

GET https://www.googleapis.com/tagmanager/v1/accounts/accountId/containers/containerId/tags

매개변수

매개변수 이름 설명
경로 매개변수
accountId string GTM 계정 ID입니다.
containerId string GTM 컨테이너 ID입니다.

승인

이 요청에는 다음 범위 중 최소 하나를 사용하여 인증이 필요합니다. (인증 및 승인에 대해 자세히 알아보기)

범위
https://www.googleapis.com/auth/tagmanager.readonly
https://www.googleapis.com/auth/tagmanager.edit.containers

요청 본문

이 메소드를 사용할 때는 요청 본문을 제공하지 마세요.

응답

요청에 성공할 경우 이 메소드는 다음과 같은 구조의 응답 본문을 반환합니다.

{
  "tags": [
    accounts.containers.tags Resource
  ]
}
속성 이름 설명 Notes
tags[] list GTM 컨테이너의 모든 GTM 태그

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

Java

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

/*
 * Note: This code assumes you have an authorized tagmanager service object.
 */

/*
 * This request lists all tags for the authorized user.
 */
try {
  ListTagsResponse tags = tagmanager.accounts().containers().tags().
      list("123456", "54321").execute();
  }
} catch (GoogleJsonResponseException e) {
  System.err.println("There was a service error: "
      + e.getDetails().getCode() + " : "
      + e.getDetails().getMessage());
}

/*
 * The results of the list method are stored in the tags object.
 * The following code shows how to iterate through them.
 */
for (Tag tag : tags.getTags()) {
  System.out.println("Account Id = " + tag.getAccountId());
  System.out.println("Container Id = " + tag.getContainerId());
  System.out.println("Tag id = " + tag.getTagId());
  System.out.println("Tag Name = " + tag.getName());
  System.out.println("Tag Type = " + tag.getType());
  if (tag.getFiringRuleId() != null) {
    for (String firingRuleId : tag.getFiringRuleId()) {
      System.out.println("Firing Rule Id  = " + firingRuleId);
    }
  }
  if (tag.getBlockingRuleId() != null) {
    for (String blockingRuleId : tag.getBlockingRuleId()) {
      System.out.println("Blocking Rule Id = " + blockingRuleId);
    }
  }
  System.out.println("Tag Live Only = " + tag.getLiveOnly());

  // Get tag priority.
  Parameter priority = tag.getPriority();
  if (priority != null) {
    System.out.println("Tag Priority Type = " + priority.getType());
    System.out.println("Tag Priority Key = " + priority.getKey());
    System.out.println("Tag Priority Value = " + priority.getValue());
  }

  // Get tag dependencies.
  Parameter dependencies = tag.getDependencies();
  if (dependencies != null) {
    System.out.println("Tag Dependencies Type = " + dependencies.getType());
    System.out.println("Tag Dependencies Key = " + dependencies.getKey());
    System.out.println("Tag Dependencies Value = " + dependencies.getValue());
  }

  System.out.println("Tag Notes = " + tag.getNotes());
  System.out.println("Tag Schedule Start ms = " + tag.getScheduleStartMs());
  System.out.println("Tag Schedule End ms = " + tag.getScheduleEndMs());

  // Get tag parameters.
  if (tag.getParameter() != null) {
    for (Parameter parameter : tag.getParameter()) {
      System.out.println("Parameter Type = " + parameter.getType());
      System.out.println("Parameter Key = " + parameter.getKey());
      System.out.println("Parameter Value = " + parameter.getValue());
    }
  }
  System.out.println("Tag Fingerprint = " + tag.getFingerprint());
}

Python

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

# Note: This code assumes you have an authorized tagmanager service object.

# This request lists all tags for the authorized user.
try:
  tags = tagmanager.accounts().containers().tags().list(
      accountId='123456',
      containerId='54321'
  ).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))


# The results of the list method are stored in the tags object.
# The following code shows how to iterate through them.
for tag in tags.get('tags', []):

  print 'Account Id = %s' % tag.get('accountId')
  print 'Container Id = %s' % tag.get('containerId')

  print 'Tag Id = %s' % tag.get('tagId')
  print 'Tag Name = %s' % tag.get('name')
  print 'Tag Type = %s' % tag.get('type')
  for firingRuleId in tag.get('firingRuleId', []):
    print 'Tag Firing Rule Id = %s' % firingRuleId
  for blockingRuleId in tag.get('blockingRuleId', []):
    print 'Tag Blocking Rule Id = %s' % blockingRuleId
  print 'Tag Live Only = %s' % tag.get('liveOnly')

  # Get tag priority.
  priority = tag.get('priority', {})
  print 'Tag Priority Type = %s' % priority.get('type')
  print 'Tag Priority Key = %s' % priority.get('key')
  print 'Tag Priority value = %s' % priority.get('value')

  # Get tag dependencies.
  dependencies = tag.get('dependencies', {})
  print 'printing Dependencies: %s' % dependencies
  print 'Dependencies Type = %s' % dependencies.get('type')
  print 'Dependencies Key = %s' % dependencies.get('key')
  print 'Dependencies Value = %s' % dependencies.get('value')

  print 'Tag Notes = %s' % tag.get('notes')
  print 'Tag Schedule Start ms = %s' % tag.get('scheduleStartMs')
  print 'Tag Schedule End ms = %s' % tag.get('scheduleEndMs')
  for parameter in tag.get('parameter', []):
    print 'Parameter Type = %s' % parameter.get('type')
    print 'Parameter Key = %s' % parameter.get('key')
    print 'Parameter Value = %s' % parameter.get('value')
  print 'Tag Fingerprint = %s\n\n' % tag.get('fingerprint')

사용해 보기

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