经过多次尝试,我不知道如何使用Facebook API在业务管理器中实现基于帖子(及其创意)的简单广告。
例如,我最后一次尝试由于Instagram问题而失败:
Facebook API: Instagram Account Is Missing
如果有人能够基于帖子创建基本广告(在给定或新的AdSet内),请帮助我。我已经看过很多这样的问题(特别是关于Instagram问题),现在我想找到一个可行的解决方案。
必须执行哪些确切的请求,或者根本不可能?
答案 0 :(得分:2)
默认情况下,Instagram展示位置已添加到定位中,因此,如果要跳过它,则需要在composer update
字段中创建adSet时在定位字段中指定:
php bin/magento setup:upgrade
如果您也想在Instagram上发布,还应该提供一个instagram演员ID:AdsCreative应该包含一个名为publisher
的额外字段,并且还记得在相关的定位条件中添加Instagram:
{
"geo_locations":{"countries":["US"]},
publisher_platforms: ['facebook'],
facebook_positions: ['feed', 'right_hand_column'],
device_platforms: ['mobile', 'desktop']
}
参考:
https://developers.facebook.com/docs/marketing-api/guides/instagramads https://developers.facebook.com/docs/marketing-api/guides/instagramads/ads_management/
https://developers.facebook.com/docs/marketing-api/targeting-specs/#placement
让我知道您是否需要更多有关Instragam的信息或答案或其他问题