我可以得到
status
enum {ACTIVE, PAUSED, DELETED, ARCHIVED}
和effective_status
enum {ACTIVE, PAUSED, DELETED, ARCHIVED}
但是当我去fb BM backend
时,我发现广告系列的状态为Not Delivering
,因为我的api请求结果是ACTIVE
。
{
"name": "0522_xxxxxx",
"status": "ACTIVE",
"effective_status": "ACTIVE",
"adsets": {
"data": [
{
"status": "ACTIVE",
"effective_status": "ACTIVE"
}
]
},
"ads": {
"data": [
{
"status": "ACTIVE",
"effective_status": "ACTIVE"
},
{
"status": "ACTIVE",
"effective_status": "ACTIVE"
}]
}
}
在BM
端,广告系列的投放状态为
enum {Active, inactive, Scheduled, Not Delivering, Completed, Not Approved, In Review, In Draft, Delete}
现在,我很困惑如何获取广告系列的投放状态。
任何评论都非常受欢迎。非常感谢。