Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Sample app: removing client ID and client secret (after invalidating …
Browse files Browse the repository at this point in the history
…in console)
  • Loading branch information
marmelroy committed Aug 31, 2017
1 parent 510cfe1 commit bd00553
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions examples/Sample/Sample/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {

func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let clientID: String = "df460a7d1ff04a72ba9699ca76cfe69b"
let clientSecret: String = "e47aa575e3244c4b96a6f569b1f59f63"
let redirectURL: URL = URL(string:"loginsample://")!
SpotifyLogin.shared.configure(clientID: clientID, clientSecret: clientSecret, redirectURL: redirectURL)
SpotifyLogin.shared.configure(clientID: "YOUR CLIENT ID", clientSecret: "YOUR CLIENT SECRET", redirectURL: redirectURL)
return true
}

Expand Down

0 comments on commit bd00553

Please sign in to comment.