2015-11-05 447 views
1

我使用此代碼來實現與我的網站在谷歌登錄。使用谷歌登錄更大的個人資料圖片

<script src="https://apis.google.com/js/platform.js" async defer></script> 
<div class="g-signin2" data-onsuccess="onSignIn"></div> 

<script> 
function onSignIn(googleUser) { 
    var profile = googleUser.getBasicProfile(); 
    console.log('ID: ' + profile.getId()); // Do not send to your backend! Use an ID token instead. 
    console.log('Name: ' + profile.getName()); 
    console.log('Image URL: ' + profile.getImageUrl()); 
    console.log('Email: ' + profile.getEmail()); 
} 
</script> 

但我在控制檯中得到小配置文件圖片。我怎樣才能從谷歌最大的個人資料圖片獲取網址?

回答

3

將查詢參數添加到imageurl?sz = x,其中x是您的圖像大小。

這裏

Retrieving profile image from Google+ API

+0

基本上回答了它的工作,但我認爲該決議不與規模日益擴大。 –

+1

這是因爲谷歌API不會給你大的形象:( –

+0

任何解決方案,以獲得大的形象? –

相關問題