你能告诉 API for Google+ 主页获取所有提要吗?
我们为个人资料获取的所有 API。我试过了
var w = new WebClient();
Observable
.FromEvent<DownloadStringCompletedEventArgs>(w, "DownloadStringCompleted")
.Subscribe(r =>
{
deserialized = JsonConvert.DeserializeObject<List<GooglePlusAuthentication.UserInfo.Thumbnail>>("[" + r.EventArgs.Result + "]");
UpdateList.ItemsSource = deserialized;
System.Diagnostics.Debug.WriteLine(r.EventArgs.Result);
});
w.DownloadStringAsync(
new Uri("https://www.googleapis.com/plus/v1/activities/"));
请建议我如何在 Google+ 中获取主页 API。