我目前正在使用 PeopleService.People.GetBatchGet() 返回所提供批次中用户的所有照片。我使用的方法返回尺寸设置为 100 的照片。我想知道是否可以收到不同尺寸的照片。
// peopleService is an object of type PeopleServiceService
var connection = peopleService.People.GetBatchGet();
connection.PersonFields = "photos";
connection.ResourceNames = resourceNames;
var result = connection.Execute();
result.Responses是一个对象列表PersonResponse。
因此,例如,result.Responses[0].Person.Photos[0].Url将具有如下值:“ https://lh4.googleusercontent.com/somecharacters/s100/photo.jpg ”。
我注意到“s100”实际上是图片的大小,如果我将其修改为另一个值,则 url 中的图片将具有该大小。
我想知道是否有任何方法可以使该方法返回不同尺寸的照片(也许添加一个参数connection)。
交互式爱情
相关分类