自定义受众列表或检索用户
Custom Audience list or retrieve users
我正在尝试将 facebook market-API 集成到我的应用程序中让我们从文档中说自定义受众我可以看到创建和删除用户的唯一方法,有没有什么方法可以让我们获得用户列表添加到自定义受众?
在谷歌搜索中,我发现了这个 link,其中说明我们无法从自定义受众中获取用户列表。但是2013年已经回答了,这个限制还存在吗?
我用来在自定义受众中创建用户的代码是
const adsSdk = require('facebook-nodejs-ads-sdk');
const CustomAudience = adsSdk.CustomAudience;
const accessToken = <accessToken>;
const api = adsSdk.FacebookAdsApi.init(accessToken);
const auidence = new CustomAudience(<audience id>);
const payload={
payload: {
schema: 'EXTERN_ID',
data: ['1234523434#']
}
};
auidence.createUser([], payload).then((data) => {
console.log(data);
});
Is there any method where we can get the list of users that were added to the Custom Audience?
没有。
Facebook 哈希数据。而且给不了。
您可以将所有发送的数据保存在数据库中。 (u 机器中的重复听觉)。
我正在尝试将 facebook market-API 集成到我的应用程序中让我们从文档中说自定义受众我可以看到创建和删除用户的唯一方法,有没有什么方法可以让我们获得用户列表添加到自定义受众?
在谷歌搜索中,我发现了这个 link,其中说明我们无法从自定义受众中获取用户列表。但是2013年已经回答了,这个限制还存在吗?
我用来在自定义受众中创建用户的代码是
const adsSdk = require('facebook-nodejs-ads-sdk');
const CustomAudience = adsSdk.CustomAudience;
const accessToken = <accessToken>;
const api = adsSdk.FacebookAdsApi.init(accessToken);
const auidence = new CustomAudience(<audience id>);
const payload={
payload: {
schema: 'EXTERN_ID',
data: ['1234523434#']
}
};
auidence.createUser([], payload).then((data) => {
console.log(data);
});
Is there any method where we can get the list of users that were added to the Custom Audience?
没有。
Facebook 哈希数据。而且给不了。
您可以将所有发送的数据保存在数据库中。 (u 机器中的重复听觉)。