我正在尝试使用python sdk获取广告最终网址。
我尝试了所有字段,但我无法找到返回广告网址的字段。目前我的领域是:
params = {'access_token':creds.refresh_token,
'fields':'action_values, actions, ad_name, adset_name, objective, outbound_clicks, outbound_clicks_ctr, call_to_action_clicks, campaign_name, cost_per_unique_click, cpc, cpm, spend, website_ctr, date_start, date_stop',
'action_breakdowns':['action_link_click_destination'],
'date_presets':'last_year',
# 'time_range':" since:2017-06-01, until:2017-01-03}"
}
ad_insights = requests.get("https://graph.facebook.com/v2.10/{}/insights".format(ad['id']), params=params)
据我所知,有些广告没有最终网址,例如提升帖子,但很多广告只指向网站,我怎样才能获得“号召性用语”?
答案 0 :(得分:3)
您必须为AdInsights报告的每个广告提取adCreative。 adCreative将包含出站链接。
请参阅此处https://developers.facebook.com/docs/marketing-api/reference/ad-creative
您可能会对以下字段感兴趣