↧
Answer by Yura Babiy for Can't take more than 30 entries from atom feed...
So, I didn't find the answer how to get more than 30 items, but I figured out how to read from another page, where you have another 30 items, and so on.After your private feed URL, you should add...
View ArticleCan't take more than 30 entries from atom feed (GitHub private feed)
I am taking atom feed with this code:var client = new HttpClient(new NativeMessageHandler()); var feed = await client.GetStringAsync(_session.GetPrivateFeedUrl()); if ( string.IsNullOrEmpty(feed) )...
View Article