我想使用Facebook graph api创建广告素材,但是我已经完成了。但是我可以在阅读所有帮助文档的情况下,在params中添加一个video_id。我不知道如何为不同的广告位设置不同的视频。
使用代码我可以成功创建广告素材,但不能将其设置为广告位:
creative_params = {
'name': 'test_creative_{}'.format(datetime.datetime.now().strftime("%m%d %H:%M:%S")),
# "call_to_action_type": "INSTALL_MOBILE_APP",
"object_story_spec": {
"instagram_actor_id": "xxx",
"page_id": "xxx",
"video_data": {
"call_to_action": {
"type": "INSTALL_MOBILE_APP",
"value": {
"application": aconfig[15],
"link": aconfig[16],
}
},
"image_hash": image_hash,
"message": aconfig[13],
"title": aconfig[14],
"video_id": video_id
}
},
"video_id": video_id
}
'''