2011年9月30日 星期五

google plus api note


1. 準備
先去 google console
開啟 Google+ api service (Courtesy limit: 1,000 queries/day)
再來去 API Access create client ID and simple API Access
勾選 Application type and Redirect URI 填一填
Redirect URI:Google should redirect the browser after the user allows (or denies) the authorization request(簡單講就是授權完要導去的頁面)

2. API 流程
OAuth2->user 登入/同意取得權限->導回 redirect_url 並取得 access_token ->API Call

php:
header ('Location: https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/plus.me&client_id=XXX@developer.gserviceaccount.com&redirect_uri=http://XXX/flash/jacky/google/&response_type=token');

scope:跟 user 取得的權限,目前 google 只開放
https://www.googleapis.com/auth/plus.me(Google+ You),
另外可以用+取得多個權限,像是
https://www.googleapis.com/auth/plus.me+https://www.googleapis.com/auth/userinfo.profile+https://www.googleapis.com/auth/plus.people.recommended(Google+ Recommended People, Profile Information, You)
另兩個是隱藏 scope,雖然可以取得權限但無法執行對應的 API Call 。

html:將 access_token 傳給 swf

目前 google+ API 只提供 read 功能,而且最重要的圈圈功能都尚未公開
跟 FB 比還相當的陽春,期待之後進一步的改版囉。

沒有留言:

張貼留言