-1
我使用這個網址https://plus.google.com/s2/photos/profile/(user_id)?sz=150 獲得在谷歌的AppEngine應用程序的當前連接的用戶的個人資料圖片,但不工作這是我的代碼示例 我的問題是兩位明星獲取用戶的個人資料圖片形式谷歌的AppEngine API
<span class="pull-right">
<% if (userService.getCurrentUser() == null) { %>
<p><a href="<%= userService.createLoginURL("/help") %>">Sign in</a></p>
<% }
else { %>
<p><%= userService.getCurrentUser().getNickname() %>
**<img alt="user profile" src="https://www.googleapis.com/plus/v1/people/<%= userService.getCurrentUser().getUserId() %>?sz=10">**
<a href="<%= userService.createLogoutURL("/home") %>">Sign out</a></p>
<% } %>
</span>
請我需要正確的方法做這件事或任何建議感謝