Facebook营销API广告明智分享计数

问题描述 投票:-2回答:1

我正在使用facebook营销API,我尝试使用action_type,action_reaction。它给了我一个反应(比如,哇,悲伤,......)和评论数据数量,但它没有返回共享计数数据。我期待分享数量。

https://graph.facebook.com/v3.1/act_Xyz/insights?access_token=Xyz&level=ad&fields=account_name,campaign_name,adset_name,ad_name,spend,clicks,cpc,actions&default_summary=false&time_range=%7B%22since%22:%222019-02-03%22,%22until%22:%222019-02-03%22%7D

"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"
        }
facebook facebook-marketing-api facebook-insights
1个回答
0
投票

我相信只有在帖子级别才能获得股票数量:

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

它将成为shares.count股票数量的对象。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.