Reddit auth provider

At this time, Arcade does not offer a default Reddit Auth Provider. To use Reddit auth, you must create a custom Auth Provider with your own Reddit OAuth 2.0 credentials as described below.

The Reddit auth provider enables tools and agents to call the Reddit API on behalf of a user. Behind the scenes, the Arcade Engine and the Reddit auth provider seamlessly manage Reddit OAuth 2.0 authorization for your users.

What’s documented here

This page describes how to use and configure Reddit auth with Arcade.

This auth provider is used by:

Configuring Reddit auth

Create a Reddit app

  • Create a Reddit Application in the Reddit App Console
  • Set the OAuth Redirect URL to: https://cloud.arcade.dev/api/v1/oauth/callback
  • Copy the App key (Client ID) and App secret (Client Secret), which you’ll need below

Next, add the Reddit app to your Arcade Engine configuration. You can do this in the Arcade Dashboard, or by editing the engine.yaml file directly (for a self-hosted instance).

Configuring Reddit auth with the Arcade Dashboard

  1. Navigate to the OAuth section of the Arcade Dashboard and click Add OAuth Provider.
  2. Select Reddit as the provider.
  3. Choose a unique ID for your provider (e.g. “my-reddit-provider”) with an optional Description.
  4. Enter your Client ID and Client Secret from your Reddit app.
  5. Click Save.

When you use tools that require Reddit auth using your Arcade account credentials, the Arcade Engine will automatically use this Reddit OAuth provider.

Configuring Reddit auth in self-hosted Arcade Engine configuration

Set environment variables

The Client ID is the Reddit “App key” and the Client Secret is the Reddit “App secret”.

Set the following environment variables:

export REDDIT_CLIENT_ID="<your client ID>"
export REDDIT_CLIENT_SECRET="<your client secret>"

Or, you can set these values in a .env file:

REDDIT_CLIENT_SECRET="<your client secret>"
REDDIT_CLIENT_ID="<your client ID>"

See Engine configuration for more information on how to set environment variables and configure the Arcade Engine.

Edit the Engine configuration

Edit the engine.yaml file and add a reddit item to the auth.providers section:

auth:
  providers:
    - id: default-reddit
      description: "The default Reddit provider"
      enabled: true
      type: oauth2
      provider_id: reddit
      client_id: ${env:REDDIT_CLIENT_ID}
      client_secret: ${env:REDDIT_CLIENT_SECRET}

Using Reddit auth in app code

Use the Reddit auth provider in your own agents and AI apps to get a user-scoped token for the Reddit API. See authorizing agents with Arcade to understand how this works.

Use client.auth.start() to get a user token for the Reddit API:

from arcadepy import Arcade
 
client = Arcade()  # Automatically finds the `ARCADE_API_KEY` env variable
 
user_id = "[email protected]"
 
# Start the authorization process
auth_response = client.auth.start(
    user_id=user_id,
    provider="reddit",
    scopes=["identity"],
)
 
if auth_response.status != "completed":
    print("Please complete the authorization challenge in your browser:")
    print(auth_response.url)
 
# Wait for the authorization to complete
auth_response = client.auth.wait_for_completion(auth_response)
 
token = auth_response.context.token
# TODO: Do something interesting with the token...

Using Reddit auth in custom tools

The Arcade Model API is a convenient way to call language models and automatically invoke tools. You can author your own custom tools that interact with the Reddit API.

Use the Reddit() auth class to specify that a tool requires authorization with Reddit. The context.authorization.token field will be automatically populated with the user’s Reddit token:

from typing import Annotated
 
import httpx
 
from arcade.sdk import ToolContext, tool
from arcade.sdk.auth import Reddit
 
 
@tool(
    requires_auth=Reddit(
        scopes=["identity"],
    )
)
async def get_user_info(
    context: ToolContext,
) -> Annotated[dict, "The user info"]:
    """Get the user info for the current user."""
    url = "https://oauth.reddit.com/api/v1/me"
    headers = {
        "Authorization": f"Bearer {context.authorization.token}",
        "User-Agent": "YourAppName v1.0 by u/YourRedditUsername",
    }
 
    async with httpx.AsyncClient() as client:
        response = await client.get(url, headers=headers)
        response.raise_for_status()
        return response.json()