Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 736 Bytes

Front Page Posts.md

File metadata and controls

36 lines (20 loc) · 736 Bytes

Front Page Posts

Author

Kris Craig

Required libraries

Overview

Retrieves a list containing the posts that the authenticated user would see on the Reddit front page.

Library Installation

In the NuGet Package Manager console:

Install-Package Reddit

The Code

using Reddit;

...

var reddit = new RedditClient("YourRedditAppID", "YourBotUserRefreshToken");

var frontPagePosts = reddit.FrontPage;
//var frontPagePosts = reddit.Subreddit().Posts.Best;  // Use this instead if you're using any version of Reddit.NET prior to 1.5.

Source File

Front Page Posts.cs