Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fathym_common/src/deno.deps.ts>DenoKVOAuth.createSpotifyOAuthConfig

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function DenoKVOAuth.createSpotifyOAuthConfig
import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.176/src/deno.deps.ts";
const { createSpotifyOAuthConfig } = DenoKVOAuth;

Returns the OAuth configuration for Spotify.

Requires --allow-env[=SPOTIFY_CLIENT_ID,SPOTIFY_CLIENT_SECRET] permissions and environment variables:

  1. SPOTIFY_CLIENT_ID
  2. SPOTIFY_CLIENT_SECRET

Examples

Example 1

import { createSpotifyOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";

const oauthConfig = createSpotifyOAuthConfig({
  scope: "user-read-private user-read-email"
});

Parameters

config: { redirectUri?: string; scope: string | string[]; }

Returns

OAuth2ClientConfig