Questions tagged [spotify-app]

The Spotify App API is no longer supported by Spotify. It allowed developers to work with Spotify using modern web technologies. For Spotify API questions that are not about the App API, use the [spotify] tag.

The Spotify platform allowed 3rd party developers to create applications using the Spotify Apps API as web applications integrated into the desktop product using Chrome Embedded Framework. It is no longer accepting new changes - announcement.

What Questions should I ask?

Questions using this tag should be about how to use one of these platforms. You may find that, in some cases, a question that arises while developing for these platforms is not Spotify specific; e.g. a common JavaScript question while creating a Spotify App. In many cases, you should tag your question with the tag instead. However, the Spotify platform does have its own idiosyncrasies, so may be appropriate. It is also advisable to include the tag as well, to ensure wider visibility.

Platforms

Spotify Apps API

The newest addition to the platform is the Spotify Apps API, which allows developers to create applications which are tightly integrated to the Spotify application. Such applications are created using a mix of HTML5, JavaScript and CSS. Because of this, as well as the official documentation's usefulness, developers should also find any documentation on HTML5, JavaScript, and CSS (such as the Mozilla Developer Center) useful.

The JavaScript API accessible within the Spotify App environment gives access to classes representing Albums, Tracks and Artists; amongst others.

Useful Resources

200 questions
1
vote
0 answers

Using jsonlite to interact with Spotify API in R

I am trying to extract Spotify data via the API Using the below getAlbums Function: getAlbums <- function(id,type="album",market="US") { total <-…
1
vote
1 answer

Spotify SDK genres are always empty?

Hey guys I am currently working with the Spotify SDK. I implemented a Login and asking for permission to access the Users Playlist. When the user gives me the permission I can access all their tracks and get all kinds of information out of them,…
Stav
  • 11
  • 3
1
vote
0 answers

Login issue when spotify app is installed but not logged in spotify inside my android application

Past couple of days i am facing a one problem : login in spotify in my application after installed spotify application in my android device. Before installed spotify application in my device it's proper working login & logout but when installing…
Dhruv Raval
  • 4,946
  • 3
  • 29
  • 34
1
vote
1 answer

Can't modify user private data with Client Credential Flow by Spotify Web API

Is there any method to modify i.e. playlist by Web API by with console based application in Client Credential Flow ? https://developer.spotify.com/web-api/authorization-guide/#client-credentials-flow Propably not, but maybe I am wrong ? I want to…
mastier
  • 872
  • 1
  • 10
  • 22
1
vote
0 answers

How do I add support for ECMA Script 6 promises on the client side?

I need to support ECMA script 6 promises in my web application on the client side. I'm using the Spotify Web API, which looks something like this // track detail information for album tracks spotifyApi.getAlbum('5U4W9E5WsYb2jUQWePT8Xm') …
scottwalstead
  • 83
  • 1
  • 8
1
vote
0 answers

Spotify API getting starred list not authorized

I'm using the Spotify iOS SDK and trying to get use this function starredListForUserInSession:callback: to find a user's starred list once they have logged in. The actual logging in of the user is working correctly, as I am able to stream Spotify…
user3781236
  • 728
  • 2
  • 9
  • 23
1
vote
1 answer

Spotify SDK for iOS, How to clear playerQueue

I'm new to the Spotify SDK. I just implemented auth, login and getting some track URIs. That works. However I can't find reset or clear music queue that is currently playing. I think [SPTAudioStreamingController queueURIs: clearQueue: callback:]; is…
fladdict
  • 11
  • 2
1
vote
1 answer

Finding an Album's Artist with the Spotify API

I'm trying to use the rails gem for the Spotify API to find the artist(s) of a particular album. I would start by retrieving the name of the album as such: album_results = RSpotify::Album.search("The Eminem Show") To find the artist of that album I…
Carl Edwards
  • 13,826
  • 11
  • 57
  • 119
1
vote
1 answer

How to get info of what user listens currently in Spotify app

Can an Android app (runs on background and uses Spotify SDK) get info of which track the user listens currently at exact time in Spotify Android app?
Dorukhan Arslan
  • 2,676
  • 2
  • 24
  • 42
1
vote
1 answer

Spotify Android SDK: Play offline tracks

Is it possible to use the Spotify Android SDK for accessing and playing offline playlists/tracks/albums?
Oliver
  • 353
  • 1
  • 4
  • 16
1
vote
1 answer

Spotify Deep link URI not working on Android Platform

I am trying to open Spotify URI link on my Android (HTC One) but it doesnt seem to be opening appropriately. The URI is just taking me into Spotify App without really redirecting me to the playlist the URI is pointing to? This is the URI:…
1
vote
1 answer

Spotify Auth + frontend JavaScript + Client Credential Flow

Using these information https://developer.spotify.com/web-api/authorization-guide I am trying to implement the 'Client Credentials Flow' to automate the authentication process. But somehow I got the error below. XMLHttpRequest cannot load…
Severino Lorilla Jr.
  • 1,637
  • 4
  • 20
  • 33
1
vote
0 answers

How do I check if the playing song is (not) in English?

Is it possible to get the language of the currently playing song in spotify? models.player.addEventListener('change', function(data) { var track = data.track.name, artist = data.track.artists[0].name; var language = "?????"; });
razz
  • 9,770
  • 7
  • 50
  • 68
1
vote
2 answers

Trying to develop Android app in Eclipse that uses Spotify APIs

I am trying to follow this tutorial https://developer.spotify.com/technologies/spotify-android-sdk/tutorial/ in eclipse instead of Android Studio. I added the two jars and the aar file to libs directory. Still I am not able to import…
1
vote
1 answer

Problems with pyspotify

I have a problem in my attempt to make my first spotify app. I'm on a raspberry pi, running Arch. I have my __main__.py and my spotify_appkey.key in a directory and i run it by [root@RPI]# python2 __main__.py The code in __main__.py looks like…
gubbfett
  • 2,157
  • 6
  • 32
  • 54