我採取請人在我的應用程序,我想用googgle接觸,流星得到谷歌的accessToken重定向
後,如果我使用accounts-google
包對用戶進行認證,這將是複雜的過程,beause我不不想來存儲用戶信息,
我只是想一次身份驗證,所以我在尋找客戶端解決方案,
var url='https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/contacts.readonly&client_id=5558545-3n8vg6u4nu2hm1gmuj1dbjib28p33qss.apps.googleusercontent.com&redirect_uri=http://localhost:3000/_oauth/google&response_type=token'
var newWindow = window.open(url, 'name', 'height=600,width=450');
的邀請按鈕,我打電話這一點,運作良好的點擊,但如何閱讀accesstoken
重新轉過這個窗口。
我找不到如何做到這一點?
我嘗試使用HTTP
方法
HTTP.get(url, {}, function(e,r){
console.log(e,r);
});
但它拋出的錯誤,這是行不通的。
是否從彈出窗口讀取accesstoekn?或者有沒有其他辦法可以做到這一點?
你可以請發表code.Thx – user555