我需要显示“纯 HTML 仪表板”或“自定义组件”,如以下链接所示https://ga-dev-tools.appspot.com/demos/embed-api/
我有谷歌分析帐户,它完美地显示了我网站的实时统计信息,但我需要使用 api 显示相同的信息,如以下链接所示: https ://github.com/googleanalytics/embed-api-demos /blob/master/site/3-custom-components.html
我已在以下代码中替换了我的客户 ID:
gapi.analytics.auth.authorize({
container: 'auth',
clientid: '623325626209-j1jm9d78ge0v4uf8b9cor31qsirungrq.apps.googleusercontent.com',
});
我还将结束日期更新为当前日期,如下所示:
query: {
'metrics': 'ga:sessions',
'dimensions': 'ga:date',
'start-date': '30daysAgo',
'end-date': '2014-09-05'
},
因此,当我运行代码时,它会显示一个“访问 Google Analytics”按钮,当我单击它时,会出现以下错误:
- 那是一个错误。
错误:origin_mismatch
应用:项目默认服务帐号
您可以发送电子邮件至此应用程序的开发人员:fz1990@gmail.com 请求详细信息
=
scope=https://www.googleapis.com/auth/analytics.readonly https://www.googleapis.com/auth/userinfo.email
response_type=code token id_token gsession
redirect_uri=postmessage
cookie_policy=single_host_origin
proxy=oauth2relay591552393
state=524099008|0.3938720987
origin=http://localhost:27363
include_granted_scopes=true
client_id=656169223314-dbc8l4c7ro20hn8vcqqtd9rhd0e6arcb.apps.googleuserconte
有人可以帮我解决这个问题吗?
提前感谢