如何使用广告帐户 ID 从 Facebook 图 api 检索商务管理平台 ID
How do I retrieve the Business Manager ID from Facebook graph api using ad account id
文档中似乎没有关于如何实现的内容。
使用图表 api 资源管理器来实现这一点会有很大的帮助
https://developers.facebook.com/tools/explorer/
感谢任何反馈。
A在doc中描述,可以请求business
字段:
business: The Business Manager, if this ad account is owned
by one
例如:
curl -i -X GET \
"https://graph.facebook.com/vX.X/act_XXX?fields=business&access_token="
{
"business": {
"id": "XXXX",
"name": "Acme"
},
"id": "act_XXXX"
}
文档中似乎没有关于如何实现的内容。
使用图表 api 资源管理器来实现这一点会有很大的帮助 https://developers.facebook.com/tools/explorer/
感谢任何反馈。
A在doc中描述,可以请求business
字段:
business: The Business Manager, if this ad account is owned by one
例如:
curl -i -X GET \ "https://graph.facebook.com/vX.X/act_XXX?fields=business&access_token="
{
"business": {
"id": "XXXX",
"name": "Acme"
},
"id": "act_XXXX"
}