公众号数据统计与分析

# 首先要看一下微信官方获取数据的 时间 具体要求 和格式,时间规则看清楚。https://developers.weixin.qq.com/doc/offiaccount/Analytics/Graphic_Analysis_Data_Interface.html
# 配置单独配置到独立文件中 或者都可以 $config = [   # 必要配置 'app_id' => env('YOUTIE_APP_ID'), 'secret' => env('YOUTIE_APP_SECRET'), ]; $userSummary = $app->data_cube->articleSummary($dt, $dt); # 某天所有被阅读过的文章  # $userSummary = $app->data_cube->articleTotal($dt, $dt); # 某天群发的文章,从群发日起到接口调用日(但最多统计发表日后7天数据) 不适用 $userList = $app->data_cube->userCumulate($dt, $dt);      # 关注的用户数 # 返回的样例 // $userSummary = '{ // "list": [ // { // "ref_date": "2022-04-20", // "msgid": "10000050_1", // "title": "“学习学习”——官方同人", // "int_page_read_user": 23676, // "ori_page_read_user": 29, // "ori_page_read_count": 34, // "share_user": 122, // "add_to_fav_user": 1, // "add_to_fav_count": 3, // "share_count": 2, // "int_page_read_count": 2 // // } // ] // }'; // $userList = '{ // "list": [ // { // "ref_date": "2014-12-09", // "cumulate_user": 1217056 // } // ] // }';

  

posted @ 2022-09-02 11:20  现世中的素人  阅读(93)  评论(0编辑  收藏  举报