GAPI:无法请求帐户数据

tus*_*hAR 1 php google-analytics google-analytics-api

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. "
Run Code Online (Sandbox Code Playgroud)

Pal*_*tir 5

是的,GAPI已经很长时间没有更新了,是的,Google确实提供了第一方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';
Run Code Online (Sandbox Code Playgroud)

从那以后它按预期工作.