すべてのフィードを取得するための Google+ ホームページの API を教えてください。
プロファイル用に取得するすべての 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 を取得する方法を提案してください。