0
votes
1answer
49 views

Spotify Apps on mobile

Can Spotify apps (HTML5) for the desktop client also be made available in the mobile clients? I can't find any mention of it in the developer guide, but an article dated Dec 2012 claims this feature ...
0
votes
0answers
83 views

Spotify Developer on Mac version 0.8.5.1333 not working

I recently installed the latest version of Spotify on my Mac and found that my apps were no longer working (Spotify displays "Sorry I could not find this app" error). This also happens when I do ...
0
votes
0answers
68 views

Playing a playlist or album through the Spotify API

Using the Spotify Apps API, I am starting the playback of a playlist or an album through the following code: getSpotifyApi().require('sp://import/scripts/api/models').player.play(uri, uri, 0); This ...
0
votes
1answer
63 views

Show play button when hoving over an album

There are many Spotify apps including Pitchfork and Rolling Stone which show a play button in the lower left corner when hovering over an album cover. Here's an example. Does the Spotify API support ...
0
votes
1answer
68 views

Can I use php SESSIONS in spotify apps?

since PHP can't be used in Spotify apps directly I am using it on my server only, but I am having problems getting the sessions to work, is it possible to use sessions even? I want to use it to see ...
0
votes
1answer
51 views

models.User.fromURI fails

When invoking models.User.fromURI like this models.User.fromURI("spotify:user:" + user, function (user) { $(div).html("<b ><a style=\"color:#FFFFFF\" href=\"spotify:user:" + ...
-4
votes
1answer
104 views

Add playlist button in integration guidelines not working

I'm trying to create a button that add the current view as a playlist like this <button class="add-playlist button icon" value="spotify:album:0fqSVcXza5It71LS2BJdLR"><span ...
0
votes
0answers
26 views

Notify when a playlist is deleted

I'm working on an Spotify app for production use and is forced to create a button that are disable once a playlist is created but become enabled as soon the playlist is deleted from the left sidebar. ...
0
votes
2answers
170 views

Facebook Javascript SDK inside a Spotify App, possible?

I guess the title is clear enough. I would like to import the Javascript SDK of Facebook inside a Spotify App. Mainly to use the Dialog feature. Does someone know if it is possible?
0
votes
2answers
322 views

Spotify Apps Api - “Share” button for created playlist

Is there a way where you could then have a "share this" button that activates the spotify sharing options for a dynamically created playlist that has been added by the user? You can do it from right ...
0
votes
3answers
534 views

Spotify Apps - 'Add as Playlist' button for playlist created within app

My code loops through a number of albums to get their tracks and adds them to a playlist variable playlist.add(m.Track.fromURI(results.tracks[j].uri)); Which i previously set up with var ...
1
vote
1answer
282 views

Developing Spotify apps on Linux

I just can't figure out where Spotify stores the apps on linux. There is nothing (as far as I can see) in ~/.spotify or ~/spotify. The docs only seems to care about Macos and windows. Any ideas?
0
votes
1answer
315 views

Spotify Apps Api - encodeURI / escape

There seems to be a bug when using the JavaScript functions encodeURI / escape and encodeURIComponent. Example: escape( 'The Frames' ) // The 0.000000rames encodeURI( 'The ...
1
vote
2answers
306 views

Spotify 0.8.2.527 disables @font-face in apps

Was reading the blog post; http://www.spotify.com/uk/blog/archives/2012/02/23/spotify-now-with-gapless-playback-crossfade/ Downloaded the preview and now font face is disabled. We've tried eot, ...
0
votes
1answer
286 views

Spotify apps: Listen for “Subscribe” event on a Playlist

Is there any way to be notified if a user subscribe/unsubscribe to a playlist? Ideally I want to be able to do something like this: var sp = getSpotifyApi(1); var models = ...
2
votes
2answers
251 views

Empty Subscriber Count for Spotify Playlists

I cannot seem to reliably fetch the subscriberCount for playlists using the Spotify Apps API. It will nearly always return zero, unless I manually view the playlist before making the API call. Is ...
1
vote
1answer
387 views

Can't find the 'Built-in Example Applications'

In the spotify developer's integration guidelines, there's a chapter about 'Built-in Example Applications'. I can't find any of these two applications (Tabs & Api). There are links to the ...
0
votes
3answers
1k views

Spotify Apps API: Library-class won't return users Playlists

I'm trying to get an array containing all Playlists in the users Library (http://developer.spotify.com/download/spotify-apps-api/reference/dcdebc652c.html). No problems with the other class ...
3
votes
3answers
965 views

Add a song to the current play queue in a Spotify App

How can I add a track to the current play queue in a spotify app?
1
vote
4answers
2k views

Spotify Apps and jQuery

How can I add and use jQuery in my Spotify App (using Spotify Apps API)? Regarding this this article http://docs.jquery.com/Using_jQuery_with_Other_Libraries I tried this in my Spotify App: ...
1
vote
0answers
567 views

Spotify App API: Player view for track [closed]

I'm trying how to figure out how to play/insert a single track with v.Player. I'm using the following code: var player = new v.Player(); player.track = objTrack; player.context = objTrack.album; ...