Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 852 Bytes

Search.md

File metadata and controls

41 lines (25 loc) · 852 Bytes

Search

Author

Kris Craig

Required libraries

Overview

Search a given subreddit for the phrase, "Bernie Sanders". If no results are found, try searching all subreddits.

Library Installation

In the NuGet Package Manager console:

Install-Package Reddit

The Code

using Reddit;
using Reddit.Controllers;
using System.Collections.Generic;

...

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

List<Post> posts = reddit.Subreddit("MySub").Search(new SearchGetSearchInput("Bernie Sanders"));  // Search r/MySub
if (posts.Count == 0)
{
    posts = reddit.Subreddit("all").Search(new SearchGetSearchInput("Bernie Sanders"));  // Search r/all
}

Source File

Search.cs