我知道许多社交网络API提供了一种使用用户的user_id或用户名来构建用户个人资料图片的网址的方法。对于Facebook,它看起来像这样:
http://graph.facebook.com/user_id/picture?type=square
现在Google Plus有类似的功能吗?或任何其他无需API调用即可获取用户图片的方式?
我知道许多社交网络API提供了一种使用用户的user_id或用户名来构建用户个人资料图片的网址的方法。对于Facebook,它看起来像这样:
http://graph.facebook.com/user_id/picture?type=square
现在Google Plus有类似的功能吗?或任何其他无需API调用即可获取用户图片的方式?
Answers:
Google更改了政策,因此现在无法使用获取Google个人资料图片的旧方法,
https://plus.google.com/s2/photos/profile/(user_id)?sz=150
执行此操作的新方法是
要求网址
https://www.googleapis.com/plus/v1/people/115950284...320?fields=image&key={YOUR_API_KEY}
这将提供json格式的Google个人资料图片网址,如下所示
回应:
{
"image":
{
"url": "https://lh3.googleusercontent.com/-OkM...AANA/ltpH4BFZ2as/photo.jpg?sz=50"
}
}
有关更多详细信息,您还可以检查给定的问题,我在哪里回答了相同类型的问题。 如何通过Google Plus中的用户ID获取用户图像?
快乐编码!
<img>
标记中使用
.../-OkM...AANA/ltpH...as/photo.jpg?sz=512
更新:自2015年以来,下面的方法不起作用
可以获取个人资料图片,甚至可以设置它的大小:
https://plus.google.com/s2/photos/profile/<user_id>?sz=<your_desired_size>
示例:我的个人资料图片,大小设置为100像素:
https://plus.google.com/s2/photos/profile/116018066779980863044?sz=100
图片标签的用法:
<img src="https://plus.google.com/s2/photos/profile/116018066779980863044?sz=100" width="100" height="100">
希望你能正常工作!
更新:Google停止了对此方法的支持,该方法现在返回404(未找到)error。
所有这些网址都会获取用户的个人资料图片:
https://www.google.com/s2/photos/profile/{user_id}
https://plus.google.com/s2/photos/profile/{user_id}
https://profiles.google.com/s2/photos/profile/{user_id}
它们重定向到您从Google API获得的相同图像网址,这是
lh6.googleusercontent.com/-x1W2-XNKA-A/AAAAAAAAAAI/AAAAAAAAAAA/ooSNulbLz8U/photo.jpg 的丑陋链接
最简单的是直接使用像图像源:
<img src="https://www.google.com/s2/photos/profile/{user_id}">
否则,要获得与Google API调用完全相同的网址,您可以读取图像标头,
例如在PHP中:
$headers = get_headers("https://www.google.com/s2/photos/profile/{user_id}", 1);
echo "<img src=$headers[Location]>";
方法1 :(不再起作用)
https://plus.google.com/s2/photos/profile/<user_id>?sz=<your_desired_size>
方法2 :(每个请求都算在您的api速率限制中,这是每天1万个免费请求)
https://www.googleapis.com/plus/v1/people/<user_id>?fields=image&key={YOUR_API_KEY}
具有以下响应格式:
{ "image": { "url": "lh5.googleusercontent.com/-keLR5zGxWOg/.../photo.jpg?sz=50"; } }
方法3 :(不需要api键)
http://picasaweb.google.com/data/entry/api/user/<user_id>?alt=json
在json响应中,您将获得一个名为“ gphoto $ thumbnail”的属性,其中包含个人资料图片网址,如下所示:
http://lh6.ggpht.com/-btLsReiDeF0/AAAAAAAAAAI/AAAAAAAAAAA/GXBpycNk984/s64-c/filename.jpg
您可能会在网址中注意到“ s64-c”部分,这意味着图像大小为64,我尝试使用其他值(例如“ s100-c”)来工作。同样,如果删除“ s64-c”部分并附加“?sz = 100”参数,则该功能也将立即生效。尽管这不是获取gplus用户个人资料图片的好方法,但优点是它不需要任何api密钥。
Google,无需API:
$data = file_get_contents('http://picasaweb.google.com/data/entry/api/user/<USER_ID>?alt=json');
$d = json_decode($data);
$avatar = $d->{'entry'}->{'gphoto$thumbnail'}->{'$t'};
//输出示例:https : //lh3.googleusercontent.com/-2N6fRg5OFbM/AAAAAAAAAAI/AAAAAAAAADE/2-RmpExH6iU/s64-c/photo.jpg
更改:“ s64”中的64为大小
如果要显示当前登录用户的个人资料图片,则无需知道{user_id}。只需使用https://plus.google.com/s2/photos/profile/me
就足够了。
您可以使用Google+ API 的people.get方法获取个人资料图片的网址。这确实需要额外的往返行程,但这是获取图像的最可靠方法。
从技术上讲,您也可以使用该URL https://s2.googleusercontent.com/s2/photos/profile/{id}?sz={size}
,然后将其重定向到最终URL。 {id}
是Google用户ID或旧的Google个人资料用户名之一(拥有用户名的用户名仍然存在,但我认为您不能再创建新的用户名了)。 {size}
是所需的照片尺寸(以像素为单位)。我几乎可以肯定这不是一个文档化的,受支持的功能,因此我不会依赖它做任何重要的事情,因为它可能会随时消失而不另行通知。但是对于快速原型或小的一次性应用来说,这可能就足够了。
尝试访问/ s2 / profile / photo网址对大多数用户有效,但并非全部。
唯一的完整证明方法是使用Google+ API。您不需要用户身份验证即可请求公共配置文件数据,因此这是一种非常简单的方法:
在https://cloud.google.com/console上获取Google+ API密钥
向以下网址发出一个简单的GET请求:https : //www.googleapis.com/plus/v1/people/+ <用户名>?key =
注意用户名前的+。如果您改用用户ID(一长串数字),则不需要+
如果使用Flutter,则可以通过people.googleapis.com
端点访问它,代码使用google_sign_in
库
import 'package:google_sign_in/google_sign_in.dart';
Future<String> getPhotoUrl(GoogleSignInAccount account, String userId) async {
// final authentication = await account.authentication;
final url = 'https://people.googleapis.com/v1/people/${userId}?personFields=photos';
final response = await http.get(
url,
headers: await account.authHeaders
);
final data = json.decode(response.body);
return data['photos'].first['url'];
}
你会得到类似
{
resourceName: people/998812322529259873423,
etag: %EgQBAzcabcQBAgUH,
photos: [{metadata: {primary: true, source: {type: PROFILE, id: 107721622529987673423}},
url: https://lh3.googleusercontent.com/a-/abcdefmB2p1VWxLsNT9WSV0yqwuwo6o2Ba21sh_ra7CnrZ=s100}]
}
url
可访问的图片网址在哪里。
尽一切可能..这是最后的工作代码。希望它对正在寻找它的人有所帮助。
<?
$url='https://www.googleapis.com/plus/v1/people/116599978027440206136?fields=image%2Furl&key=MY_API_KEY&fields=image';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
$d = json_decode($response);
$avatar_url = $d->{'image'}->{'url'};
echo $avatar_url;
?>
简单答案:否
您将必须查询person API并获取个人资料image.url数据才能获取照片。AFAIK没有包含用户ID的网址的默认格式。