Is it possible using the spotify apps API to create one of these widgets filled with my data of choice?
相关问题
- Is there a way to play audio on a mobile browser w
- How to know when the user changes the song with th
- Monitoring Spotify track change in Applescript?
- Newest Spotify update: Autohotkeys script broke
- launchWebAuthFlow with Spotify returns “Authorizat
相关文章
- Spotify API Create Temp Playlist Not Loading
- How to refresh Access Token on Spotify SDK for And
- Spotify session management
- Update on Spotify API not allowing auto play
- How to change BPM value of Spotify Song Swift
- Get current song playing in Spotify on iPhone
- Get spotify currently playing track
- Starting a Song from Spotify Intent
Yes, by using import/scripts/pager. Here's an example, extracted and simplified from the "What's New" app. Your pager.js:
Your index.html:
And lastly, copy the whatsnew.css into your project and rename it to pager.css. You will of course need to clean up the css and modify the elements in your index.html to fit with your app but this is a good starting point.
The "What's New" app also has an example of a horizontal pager with album artwork. Take a look at this question and answer to figure out how to extract the source of the app.
Also note that I am not sure whether the pager.js will be part of the public API. If not then you can of course extract it into your own pager widget and use it anyway.