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

ε祈祈猫儿з 提交于 2019-12-02 23:23:53

问题


I created a Custom Audience of type "Customer List: Value-based".

I then used that to create a "value-based Lookalike Audience".

The documentation for "value-based Lookalike Audience" is here.

But what I want to know is:

How can I use the PHP SDK to update my Custom Audience of type "Customer List: Value-based" via the API?

(Then, the changes will flow through to the lookalike audience, which is what I use in my ads targeting.)

I cannot find documentation.

P.S. Ding Zhang of Facebook encouraged me to ask the question here since none of the people I reached at FB were willing to answer my question directly. Any awesome FB developers out there? You get major points for being able to answer this one!


回答1:


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.



来源:https://stackoverflow.com/questions/45438479/facebook-ads-api-to-update-customer-list-value-based

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