import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.141/src/src.deps.ts";
const { createSpotifyOAuthConfig } = DenoKVOAuth;
Returns the OAuth configuration for Spotify.
Requires --allow-env[=SPOTIFY_CLIENT_ID,SPOTIFY_CLIENT_SECRET]
permissions
and environment variables:
SPOTIFY_CLIENT_ID
SPOTIFY_CLIENT_SECRET
Examples
Example 1
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"
});