1
Exception: GAPI: Failed to request account data. Error: 

 " Error 404 (Not Found)!!1 *          
 {
    margin: 0;
    padding: 0;
}
html,
code { font: 15px/22px arial,sans-serif }
html {
    background: #fff;
    color: #222;
    padding: 15px;
}
body {
    margin: 7% auto 0;
    max-width: 390px;
    min-height: 180px;
    padding: 30px 0 15px;
}
* > body {
    background: url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;
    padding-right: 205px;
}
p {
    margin: 11px 0 22px;
    overflow: hidden;
}
ins {
    color: #777;
    text-decoration: none;
}
a img { border: 0 }
@media screen and (max-width:772px) { 
    body {
        background: none;
        margin-top: 0;
        max-width: none;
        padding-right: 0;
    }
}


404. That's an error. The requested URL 
         /analytics/feeds/accounts/default?start-index=1&max-results=20 
was not found on this server. That's all we know. "
4

2 回答 2

5

是的,GAPI 很久没有更新了,是的,谷歌确实提供了第一方 PHP 库和教程。这既是一团糟,而且对于小规模的脚本来说太过分了。

但是您可以通过以下线程立即修复 GAPI:https ://code.google.com/p/gapi-google-analytics-php-interface/issues/detail?id=84

特别是,您需要修补 GAPI 类的头部,替换为以下内容。

const client_login_url = 'https://www.google.com/accounts/ClientLogin';
const account_data_url = 'https://www.googleapis.com/analytics/v2.4/management/accounts/~all/webproperties/~all/profiles'; //https://www.google.com/analytics/feeds/accounts/default
const report_data_url = 'https://www.googleapis.com/analytics/v2.4/data';

从那里开始,它按预期工作。

于 2013-06-19T12:15:54.033 回答
1

这是对 Palantir 的回答的一个错误。

除了修补头部之外,还需要更改以下行以消除“未定义变量”错误:

$account_root_parameters['startDate'] = strval($google_results->startDate);
$account_root_parameters['endDate'] = strval($google_results->endDate);

应该:

$account_root_parameters['startDate'] = strval($xml->startDate);
$account_root_parameters['endDate'] = strval($xml->endDate);
于 2013-10-12T09:01:21.770 回答