Python SDK を使用して Facebook 広告を実行できます。ターゲットオーディエンスの潜在的なリーチを知りたい。利用可能なコマンドまたは他の方法はありますか?
質問する
784 次
1 に答える
0
広告アカウントを使用してターゲティング仕様のリーチ見積もりを取得する。
account = AdAccount('act_<AD_ACCOUNT_ID>')
targeting_spec = {
'geo_locations': {
'countries': ['US'],
},
'age_min': 20,
'age_max': 40,
}
params = {
'currency': 'USD',
'optimize_for': AdSet.OptimizationGoal.offsite_conversions,
'targeting_spec': targeting_spec,
}
reach_estimate = account.get_reach_estimate(params=params)
print(reach_estimate)
回答結果
{
"data": {
"users": 186000000,
"bid_estimations": [
{
"unsupported": false,
"location": 3,
"bid_amount_min": 39,
"bid_amount_median": 80,
"bid_amount_max": 121
}
],
"estimate_ready": true
}
}
言及基準に基づく186000000人のユーザー
于 2016-06-10T06:22:03.487 に答える