谷歌分析 API 迁移
几天前,Google 宣布了这一消息 :
如果您在 Management API 2.3 版上构建了应用程序,那么您 需要采取行动。
从 2011 年 12 月 21 日星期三开始,我们计划转发所有 管理 API v2.3 请求 API 版本 2.4。这个改变 将逐步推出,我们预计在一两周内,所有 Management API 的 v2.3 请求将返回 v2.4 响应。
他们接着说迁移很容易:
从版本 2.3 迁移到版本 2.4 非常简单!所有你需要的 要做的是通过 Google API 注册 控制台https://code.google.com/apis/console/b/0/< /a>并添加 API 密钥 使用关键查询参数(或 OAuth2.0 访问令牌,如果您是 使用 OAuth 2.0)
我不清楚这是否会真正影响我的自定义类,该类使用以下 URL 进行 OAuth 1.0 身份验证并从 Google Analytics 检索数据:
private $request_token_url = 'https://www.google.com/accounts/OAuthGetRequestToken';
private $authorize_token_url = 'https://www.google.com/accounts/OAuthAuthorizeToken';
private $access_token_url = 'https://www.google.com/accounts/OAuthGetAccessToken';
private $scope = 'https://www.google.com/analytics/feeds/';
一旦他们使用了,我对其 API 的访问是否会被切断开始将请求从2.3转发到2.4,或者这根本不会影响我?
A few days ago, Google announced this:
If you built an application on version 2.3 of the Management API, you
need to take action.Starting Wednesday, December 21st 2011, we plan to forward all the
Management API v2.3 requests to version 2.4 of the API. This change
will be rolled out gradually, and we expect that in a week or two, all
the v2.3 requests for Management API will return a v2.4 response.
They go on to say that migration is easy:
Migrating from version 2.3 to version 2.4 is simple! All you need to
do is register through Google APIs
consolehttps://code.google.com/apis/console/b/0/and add an API key
using the key query parameter (or an OAuth2.0 access token if you’re
using OAuth 2.0)
What I'm not clear on is whether or not this will actually affect my custom class, which uses the following URLs for OAuth 1.0 authentication and retrieving data from Google Analytics:
private $request_token_url = 'https://www.google.com/accounts/OAuthGetRequestToken';
private $authorize_token_url = 'https://www.google.com/accounts/OAuthAuthorizeToken';
private $access_token_url = 'https://www.google.com/accounts/OAuthGetAccessToken';
private $scope = 'https://www.google.com/analytics/feeds/';
Will my access to their API be cut off once they start forwarding requests from 2.3 to 2.4, or will this not affect me at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论