Provides an OAuth 2.0 client for interacting with Dribbble's authentication and token APIs.

This class allows creating authorization URLs, validating authorization codes, and generating secure state strings.

const dribbble = new Dribbble({
clientId: "your-client-id",
clientSecret: "your-client-secret",
redirectURI: "https://your-redirect-uri.com"
});

const state = dribbble.generateState();
const authURL = dribbble.createAuthorizationURL(state, ["public"]);
console.log(authURL);

// After receiving the authorization code:
const authResponse = await dribbble.validateAuthorizationCode("auth-code");
console.log(authResponse.accessToken);

Constructors

Methods

  • Generates an authorization URL for Dribbble's OAuth 2.0 flow.

    Parameters

    • state: string

      A unique string to maintain state between the request and callback.

    • scopes: string[]

      An array of scopes to request from the user.

    Returns string

    The authorization URL for Dribbble.

    const state = dribbble.generateState();
    const authURL = dribbble.createAuthorizationURL(state, ["public", "write"]);
    console.log(authURL);
  • Generates a cryptographically secure state string for OAuth 2.0.

    Returns string

    A Base64-encoded state string.

    const state = dribbble.generateState();
    console.log(state); // Use this as the `state` parameter in your auth request.
  • Validates an authorization code and retrieves an access token from Dribbble.

    Parameters

    • code: string

      The authorization code received from Dribbble.

    Returns Promise<DribbbleAuthResponse>

    A promise that resolves to a DribbbleAuthResponse containing the access token and other details.

    const authResponse = await dribbble.validateAuthorizationCode("auth-code");
    console.log(authResponse.accessToken);