gpt4 book ai didi

jquery - 在网站中显示自动授权的 Google Analytics 数据?

转载 作者:行者123 更新时间:2023-12-01 01:54:14 25 4
gpt4 key购买 nike

我有这个 js 使用 ga-ez-dash library 从下面的 Google Analytics 数据中渲染图表。显示用户访问历史记录、浏览器历史记录等。 我能够渲染图表,但问题是我不希望所有客户都使用我们的 Google Analytics 帐户登录。有没有办法通过 jquery post/curl php 等自动登录,或者我可以让 Google Analytics 进行登录吗?数据公开。任何人都可以建议实现这一目标的最佳方法。任何帮助将不胜感激!

var API_KEY = 'Enter Your API Key Here';
var CLIENT_ID = 'Enter Your Client ID Here';
var TABLE_ID = 'Enter your Table ID here';
// Format of table ID is ga:xxx where xxx is the profile ID.

gadash.configKeys({
'apiKey': API_KEY,
'clientId': CLIENT_ID
});

// Create a new Chart that queries visitors for the last 30 days and plots
// visualizes in a line chart.
var chart1 = new gadash.Chart({
'type': 'LineChart',
'divContainer': 'line-chart-example',
'last-n-days':30,
'query': {
'ids': TABLE_ID,
'metrics': 'ga:visitors',
'dimensions': 'ga:date'
},
'chartOptions': {
height:600,
title: 'Visits in January 2011',
hAxis: {title:'Date'},
vAxis: {title:'Visits'},
curveType: 'function'
}
}).render();

最佳答案

您可以log into Google services with an OAuth2 token ;只需让用户登录一次他们的 Google 帐户,批准您的访问并存储 token 即可。然后您可以登录到您有权自动访问的帐户部分。

附注为了在 Javascript 中做到这一点,他们提供了 client API 。我链接到的第一页底部列出了所有客户端 API。

关于jquery - 在网站中显示自动授权的 Google Analytics 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16185971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com