From 50ce0adb4e7e56d764d66fd58424554d985bf542 Mon Sep 17 00:00:00 2001 From: Victorio Berra Date: Mon, 25 Nov 2019 09:42:29 -0600 Subject: [PATCH] Clean up README.md Add link to Reddit for app creation. I also removed some verbosity on how to install a NuGet. Most developers will know how to get the library and there are just too many ways to list them all out in the README. (`dotnet add package`, `Install-Package`, VS-GUI, JetBrains Rider GUI, etc.) No point in listing all that out. I also cleaned up some text around the "binding to a refresh token" stuff since there really is no binding to a refresh token, the access token is refreshed using the refresh token. Its OAuth. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eca52e40..0fc3b4f0 100644 --- a/README.md +++ b/README.md @@ -42,15 +42,15 @@ Reddit.NET is FOSS (MIT license) and was written in C#. It can be found on Githu ## Usage -Reddit.NET can be installed via NuGet. You can find it at: https://www.nuget.org/packages/Reddit +Reddit.NET can be installed via NuGet. https://www.nuget.org/packages/Reddit -To install via the Visual Studio NuGet Package Manager Console (in VS 2017, you'll find it under Tools->NuGet Package Manager->NuGet Package Manager Console): +To create an app for use with the Reddit API, go here: https://www.reddit.com/prefs/apps ```nuget PM> Install-Package Reddit ``` -To create a new API instance bound to a specific user's refresh token in an installed app: +To create a new API instance for a registered Reddit app: ```c# using Reddit;