타게팅 설명

타게팅 사양 세트에 대해 인간이 읽을 수 있는 설명을 가져옵니다. 특정 ads에 대한 타게팅 설명을 읽으려면 https://graph.facebook.com/{AD_ID}/targetingsentencelinesHTTP GET을 보내세요.

기존 광고에 대한 타게팅 설명

기존 광고의 targetingsentencelines 연결을 가져오는 방법은 다음과 같습니다.

use FacebookAds\Object\Ad;

$ad = new Ad(<AD_ID>);
$targeting_description = $ad->getTargetingDescription();

// Output targeting description
foreach ($targeting_description->targetingsentencelines as $description) {
  echo $description['content'].PHP_EOL;
  foreach ($description['children'] as $child) {
    echo "\t".$child.PHP_EOL;
  }
}
from facebookads.adobjects.ad import Ad

ad = Ad(<AD_ID>)
targeting_description = ad.get_targeting_sentence_lines().get_one()

# Output the targeting description
for description in targeting_description['targetingsentencelines']:
    print(description['content'])
    for child in description['children']:
        print("\t" + child)
curl -G \
  -d 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v2.5/<AD_ID>/targetingsentencelines

응답:

{
    "id": "<AD_ID>/targetingsentencelines",
    "targetingsentencelines": [
    {
        "content": "Location - Living In:",
        "children": [
            "Japan",
            "United States"
        ]
    },
    {
        "content": "Age:",
        "children": [
            "20 - 24"
        ]
    },
    {
        "content": "Gender:",
        "children": [
            "Male"
        ]
    }]
}

응답에는 다음과 같은 필드가 포함됩니다.

이름 설명

id

유형: 문자열

targetingsentencelines의 ID입니다.

targetingsentencelines

유형: JSON 개체의 배열

타게팅 사양에 대한 인간이 읽을 수 있는 설명입니다. 각 개체에는 content 또는 타게팅 유형, 그리고 children 또는 타게팅 사양이 포함됩니다. 이 필드는 유효 노출 위치만 고려합니다.

광고 계정의 타게팅 설명

https://graph.facebook.com/{AD_ACCOUNT_ID}/targetingsentencelines에서 광고 계정에 대한 HTTP GET을 사용하여 타게팅 사양에 대한 타게팅 설명을 가져올 수도 있습니다.

예를 들어 미국이나 일본에 거주하고 만 20~24세 사이 남성인 사람들에 대한 타게팅 설명을 가져오는 방법은 다음과 같습니다.

use FacebookAds\Object\AdAccount;
use FacebookAds\Object\Fields\TargetingFields;
use FacebookAds\Object\Targeting;

$account = new AdAccount('act_<AD_ACCOUNT_ID>');
$targeting = new Targeting();
$targeting->setData(array(
  TargetingFields::GEO_LOCATIONS => array(
    'countries' => array('US', 'JP')
  ),
  TargetingFields::GENDERS => array(1),
  TargetingFields::AGE_MIN => 20,
  TargetingFields::AGE_MAX => 24,
));

$params = array(
  'targeting_spec' => $targeting->exportData(),
);

foreach ($account->getTargetingSentenceLines(array(), $params) as $description) {
  echo $description->{'content'}.PHP_EOL;
  foreach ($description->{'children'} as $child) {
    echo " - ".$child.PHP_EOL;
  }
}
from facebookads.adobjects.adaccount import AdAccount
from facebookads.adobjects.targeting import Targeting

account = AdAccount('act_<AD_ACCOUNT_ID>')
params = {
    'targeting_spec': {
        Targeting.Field.geo_locations: {
            Targeting.Field.countries: ['US', 'JP'],
        },
        Targeting.Field.genders: [1],
        Targeting.Field.age_min: 20,
        Targeting.Field.age_max: 24,
    },
}

targeting_description = account.get_targeting_sentence_lines(params=params) \
    .get_one()

# Output the targeting description
for description in targeting_description['targetingsentencelines']:
    print(description['content'])
    for child in description['children']:
        print("\t" + child)
curl -G \
  --data-urlencode 'targeting_spec={ 
    "age_max": 24, 
    "age_min": 20, 
    "genders": [1], 
    "geo_locations": {"countries":["US","JP"]} 
  }' \
  -d 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v2.11/act_<AD_ACCOUNT_ID>/targetingsentencelines

응답:

{
    "params": {
        "genders": [1],
        "age_min": 20,
        "age_max": 24,
        "geo_locations": {
            "countries": [
                "US",
                "JP"
            ]
        }
    },
    "targetingsentencelines": [{
        "content": "Location - Living In:",
        "children": [
            "Japan",
            "United States"
        ]
    }, {
        "content": "Age:",
        "children": [
            "20 - 24"
        ]
    }, {
        "content": "Gender:",
        "children": [
            "Male"
        ]
    }]
}

추가적인 매개변수에는 다음이 포함됩니다.

이름 설명

targeting_spec

유형: JSON 개체

필수 항목.

이 타게팅 사양에 대한 타게팅 설명을 가져옵니다.

hide_targeting_spec_from_return

유형: 부울

선택 사항.

응답에 요청된 targeting_spec이 포함되었는지 여부를 나타냅니다. 기본값은 false입니다.

응답에는 다음과 같은 필드가 포함됩니다.

이름 설명

targetingsentencelines

유형: JSON 개체의 배열

타게팅 사양에 대한 인간이 읽을 수 있는 설명입니다. 각 개체에는 content 또는 타게팅 유형, 그리고 children 또는 타게팅 사양이 포함됩니다.

params

유형: JSON 개체

제공된 타게팅 사양입니다.