Facebook Marketing API AD WISE份额数量



我正在使用Facebook Marketing API,我尝试使用action_type,action_reaction。它给了我一个反应(例如,哇,悲伤,...)和评论数据的数量,但它没有返回股票计数数据。我希望分享计数。

https://graph.facebook.com/v3.1/act_xyz/insights?access_token = xyz& level=ad& fields = accounts = account_name,campaign_name_name,;

"actions": [
        {
           "action_type": "landing_page_view",
           "value": "95"
        },
        {
           "action_type": "comment",
           "value": "1"
        },
        {
           "action_type": "link_click",
           "value": "273"
        },
        {
           "action_type": "post_reaction",
           "value": "3"
        },
        {
           "action_type": "post_engagement",
           "value": "277"
        },
        {
           "action_type": "page_engagement",
           "value": "277"
        }

我相信仅股票计数只能在帖子级别上可用:

https://developers.facebook.com/docs/graph-api/reference/v3.2/post

它将是一个对象,其中shares.count中的股份数量。

最新更新