npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@microfox/reddit-oauth

v1.5.0

Published

A TypeScript OAuth package for Reddit.

Downloads

21

Readme

Microfox Reddit OAuth

A TypeScript OAuth package for Reddit.

Installation

npm install @microfox/reddit-oauth

Authentication

This SDK uses OAuth 2.0 for authentication. You need to provide the following credentials:

  • accessToken: Your OAuth access token
  • refreshToken: Your OAuth refresh token
  • clientId: Your OAuth client ID
  • clientSecret: Your OAuth client secret

You can obtain these credentials by following the OAuth 2.0 flow for Reddit.

Environment Variables

The following environment variables are used by this SDK:

  • REDDIT_CLIENT_ID: Your Reddit application's client ID. Obtain this from your Reddit app settings. (Required)
  • REDDIT_CLIENT_SECRET: Your Reddit application's client secret. Obtain this from your Reddit app settings. (Required)
  • REDDIT_REDIRECT_URI: The redirect URI you specified when creating your Reddit app. (Required)

Additional Information

To obtain OAuth credentials for Reddit:

  1. Go to https://www.reddit.com/prefs/apps

  2. Click on 'create app' or 'create another app' at the bottom

  3. Fill in the required information:

    • Name: Your app's name

    • App type: Choose 'web app' for most cases

    • Description: Brief description of your app

    • About URL: Your app's website (if applicable)

    • Redirect URI: The URI where Reddit will redirect after authorization

  4. Click 'create app'

  5. You'll receive a Client ID and Client Secret. Keep these secure.

Environment variables:

  • REDDIT_CLIENT_ID: Your Reddit application's client ID

  • REDDIT_CLIENT_SECRET: Your Reddit application's client secret

  • REDDIT_REDIRECT_URI: The redirect URI you specified when creating the app

To set up environment variables:

  1. Create a .env file in your project root (if not already present)

  2. Add the following lines to the .env file:

    REDDIT_CLIENT_ID=your_client_id_here

    REDDIT_CLIENT_SECRET=your_client_secret_here

    REDDIT_REDIRECT_URI=your_redirect_uri_here

  3. Use a package like dotenv to load these variables in your application

Important notes:

  • Reddit's OAuth implementation uses comma-separated scopes instead of space-separated

  • The authorization endpoint is https://ssl.reddit.com/api/v1/authorize

  • The token endpoint is https://ssl.reddit.com/api/v1/access_token

  • Access tokens expire after 1 hour (3600 seconds)

  • To get a refresh token, include 'duration=permanent' in the initial authorization request

  • Rate limits: https://github.com/reddit-archive/reddit/wiki/API#rules

    • 60 requests per minute

    • OAuth2 clients may make up to 600 requests per 10 minutes

    • Monitor the X-Ratelimit headers in API responses for current limits and usage

For more detailed information, refer to the Reddit API documentation: https://www.reddit.com/dev/api/oauth

Constructor

createRedditOAuth

Initializes a new instance of the RedditOAuthSdk.

This SDK provides methods for authenticating with the Reddit API using OAuth 2.0.

Parameters:

  • config: An object containing the client ID, client secret, redirect URI, and scopes.

Usage Example:

import { createRedditOAuth } from '@microfox/reddit-oauth';

const redditOAuth = createRedditOAuth({
  clientId: process.env.REDDIT_CLIENT_ID,
  clientSecret: process.env.REDDIT_CLIENT_SECRET,
  redirectUri: process.env.REDDIT_REDIRECT_URI,
  scopes: ['identity', 'read'],
});

Functions

getAuthorizationUrl

Generates the authorization URL used to initiate the OAuth 2.0 flow.

Parameters:

  • state: A string used to prevent CSRF attacks. This value will be returned in the redirect URI.
  • duration: The duration of the access token. Can be either 'temporary' or 'permanent' (default).

Returns:

  • The authorization URL as a string.

Usage Example:

const authorizationUrl = redditOAuth.getAuthorizationUrl(
  'random_string',
  'permanent',
);
console.log(authorizationUrl);

getAccessToken

Retrieves an access token from Reddit using the authorization code obtained from the redirect URI.

Parameters:

  • code: The authorization code.

Returns:

  • A Promise that resolves to an object containing the access token, token type, expiry time, scope, and refresh token (if requested).

Usage Example:

const tokenResponse = await redditOAuth.getAccessToken('authorization_code');
console.log(tokenResponse);

refreshAccessToken

Refreshes an existing access token using a refresh token.

Parameters:

  • refreshToken: The refresh token.

Returns:

  • A Promise that resolves to an object containing the new access token, token type, expiry time, and scope.

Usage Example:

const refreshTokenResponse =
  await redditOAuth.refreshAccessToken('refresh_token');
console.log(refreshTokenResponse);

validateAccessToken

Validates an access token by making a request to the Reddit API.

Parameters:

  • accessToken: The access token to validate.

Returns:

  • A Promise that resolves to a boolean indicating whether the access token is valid.

Usage Example:

const isValid = await redditOAuth.validateAccessToken('access_token');
console.log(isValid);

revokeToken

Revokes an access token or refresh token.

Parameters:

  • token: The token to revoke.
  • tokenTypeHint: An optional hint indicating the type of token being revoked. Can be either 'access_token' or 'refresh_token'.

Returns:

  • A Promise that resolves when the token has been revoked.

Usage Example:

await redditOAuth.revokeToken('access_token', 'access_token');