REDDIT Page 3 of reddit json?

Use the last item from the previous page. Abridged/simplified C# example of getting "new items" pages (code that parses the previous page passes lastItem back to the method that gets the next page): public static string k_baseUrlFormat = "reddit.com/r/{0}/new/.json?sort=new{1}"; public static string k_moreFormat = "&after={0}"; // snip string more = ""; if (!string. IsNullOrEmpty( lastItem ) ) { more = string.

Format( k_moreFormat, lastItem ); } string url = string. Format( k_baseUrlFormat, subreddit, more ) lastItem is item id including type ID, that looks like t3_g6a4s. You can use other parameters for different stuff in the same way as w/standard web requests for pages.

Use the last item from the previous page. Abridged/simplified C# example of getting "new items" pages (code that parses the previous page passes lastItem back to the method that gets the next page): public static string k_baseUrlFormat = "reddit.com/r/{0}/new/.json?sort=new{1}"; public static string k_moreFormat = "&after={0}"; // snip string more = ""; if (!string. IsNullOrEmpty( lastItem ) ) { more = string.

Format( k_moreFormat, lastItem ); } string url = string. Format( k_baseUrlFormat, subreddit, more ); lastItem is item id including type ID, that looks like t3_g6a4s. You can use other parameters for different stuff in the same way as w/standard web requests for pages.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions