Skip to content

Spotify Clone, using Swift, UIKit with Spotify WebAPI. Network manager, Haptics, Authentication manager, Programmatic UI, Views, TableView, Compositional Layout. Used first party official API from Spotify

Notifications You must be signed in to change notification settings

Godfrey48/Spotify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spotify [Clone]

Spotify, is a popular music streaming service. Creating a clone of the Spotify using UIKit, Swift 5.3, Cocapods, Spotify official API (using WEB API mostly), SDWebImage, Firebase Analytics through cocapods. More content will be updated soon. This project is under active development.

Installation

If you want to clone the project, you should create a Constants.swift file with a struct as mentioned below to use clientID, clientSecret etc, from Spotify. You can get your client ID and secret from Spotify Developer account here

import Foundation

struct Constants {
    static let clientID = "YOUR_CLIENT_ID"
    static let clientSecret = "YOUR_CLIENT_SECRET"
    static let tokenAPIURL = "https://accounts.spotify.com/api/token"
    static let redirectURI = "REDIRECT_URL" // Can be your own website url 
    static let scopesArray = ["user-read-private",
                               "playlist-modify-public",
                               "playlist-read-private",
                               "playlist-modify-private",
                               "user-follow-read",
                               "user-read-email"
    ]
//Add scopes to capture different user accesses
}

License

MIT

About

Spotify Clone, using Swift, UIKit with Spotify WebAPI. Network manager, Haptics, Authentication manager, Programmatic UI, Views, TableView, Compositional Layout. Used first party official API from Spotify

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Swift 99.8%
  • Ruby 0.2%