Facebook Ads API to update “Customer List: Value-based”

戏子无情 提交于 2019-12-02 10:37:04

I finally found some documentation here.

use FacebookAds\Object\CustomAudienceMultiKey;
use FacebookAds\Object\CustomAudienceNormalizers\HashNormalizer;
use FacebookAds\Object\Fields\CustomAudienceMultikeySchemaFields;

$users = array(
  array('test1@example.com', 44.5),
  array('test2@example.com', 140),
  array('test3@example.com', 0),
  array('test4@example.com', 0.9),
);

foreach ($users as &$user) {
  $user[0] = hash(HashNormalizer::HASH_TYPE_SHA256, $user[0]);
}

$schema = array(
  CustomAudienceMultikeySchemaFields::EMAIL,
  'LOOKALIKE_VALUE',
);

$audience = new CustomAudienceMultiKey('<CUSTOM_AUDIENCE_ID>');
$audience->addUsers($users, $schema, true);

I'm excited to try this out.

P.S. I still can't find the "magic string" of 'LOOKALIKE_VALUE' referenced or defined anywhere in the SDK.

This blog post was how I first found this documentation after hours of Google searches.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!