我想從Google分析中獲取數據(Pageview,Session,Users和全部)並在另一個網站上顯示它,但我的問題是我不知道如何使用JavaScript獲取訪問令牌。如何使用JavaScript爲Google API生成訪問令牌(以備將來使用)?
我提到了一些谷歌文檔,以便獲得訪問令牌Query Explorer,OAuth 2.0 Playground但是這個訪問令牌在60分鐘過期,我要保存以備將來使用此訪問令牌(萬歲訪問令牌)。任何人都知道如何使用js獲取訪問令牌,或知道如何獲取使用未來使用的令牌。
每當我使用過期的訪問令牌和火的API,所以我得到這個錯誤:
{"error":{"errors":[{"domain":"global","reason":"authError","message":"Invalid Credentials","locationType":"header","location":"Authorization"}],"code":401,"message":"Invalid Credentials"}}
和由Query Explorer產生我的谷歌分析API包含的access_token。
https://www.googleapis.com/analytics/v3/data/ga?ids=ga%3A123456&start-date=2016-10-21&end-date=2016-11-20&metrics=ga%3Asessions%2Cga%3Apageviews&dimensions=ga%3AlandingPagePath&start-index=3&max-results=1&access_token=za29.aaaaaaaaabbbbbbbbbccccccccdddddddmmvermrm
您需要閱讀OAuth文檔https://developers.google.com/identity/protocols/OAuth2 – Liam
對不起,我已經閱讀過好幾次,但我沒有收到:(如何獲得access_token?@Liam –