Skip to content

Creating a Spotify Developer API Key Guide

Renato edited this page Dec 7, 2024 · 1 revision

Prerequisites

  • A Spotify account

Step 1: Create a Spotify Developer Account

  1. Navigate to the Spotify Developer Dashboard
  2. Click "Log In" and sign in with your Spotify account credentials
  3. If you don't have an account, click "Sign Up" and create one

Step 2: Create a New Application

  1. After logging in, click the "Create App" button
  2. Fill out the application details:
    • App Name: Choose a unique, descriptive name
    • App Description: Briefly describe your project's purpose
    • Redirect URI: Add a valid redirect URI (e.g., http://localhost:8080/callback)

Step 3: Obtain Client Credentials

  1. After creating the app, you'll be redirected to the app's dashboard
  2. Find and copy your:
    • Client ID: Public identifier for your application
    • Client Secret: Confidential key (keep this private!)

Step 4: Set Up Authorization Scopes

  1. Go to your app's "Edit Settings"
  2. Under "Redirect URIs", add all necessary callback URLs
  3. Select required scopes based on your project's needs (e.g., Web-API, Web Playback SDK)

Additional Resources