我想将下面的php代码从Picasa迁移到Googleapis,以便在我的网站上进行Google登录,以便获取用户缩略图。
由于不推荐使用picasa API,请帮助我将以下代码转换为GoogleAPI。
$data = file_get_contents('http://picasaweb.google.com/data/entry/api/user/'.$user['google_id'].'?alt=json');
$d = json_decode($data);
$avatar = $d->{'entry'}->{'gphoto$thumbnail'}->{'$t'};