PHP code example of exinfinite / gsca

1. Go to this page and download the library: Download exinfinite/gsca library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

exinfinite / gsca example snippets


composer 

//需先至google cloud platform申請服務帳戶,並將其加入google search console的資源中
$agent = new \Exinfinite\GSCA\Agent("path of credentials.json", "path of cache dir");
//若為網域資源,則使用sc-domain:site_url
$analysis = new Analysis($agent, "site_url");
$start_date = new \DateTime('first day of this month');
$end_date = new \DateTime('last day of this month');

$analysis->baseData($start_date, $end_date);

//group by keyword
$analysis->searchWords($start_date, $end_date);

//group by page
$analysis->pages($start_date, $end_date);

//最高曝光的頁面-關鍵字組
$analysis->highImpressionPages($start_date, $end_date, $take = 10);

//(高曝光-高點閱率)的頁面-關鍵字組
$analysis->highCtrPages($start_date, $end_date, $take = 10);

//(高曝光-低點閱率)的頁面-關鍵字組
$analysis->lowCtrPages($start_date, $end_date, $take = 10);