A Spotify module for Corona SDK

Hi,

It’s still an early release, but I’ve put together a package that handles authentication and API requests for the Spotify Web API.

Visit the mod_spotify project site for more information.

The download also includes a jinky demo showing the process. It pulls the 10 newest releases, with mini. You can tap an image to hear the 30 second sample, if one is available. The demo must be compiled and run on a device, due to the use of some native components.

mod_spotify - please report any issues on the tracker. If something doesn’t make sense, let me know.

Enjoy!

Very nice. You ave been busy lately!

Hey @develephant have you considered making plugins out of these?

Rob

Yes, I have :), but justed wanted to do a little testing first. Is it possible to distribute, or perform testing with plugins outside of Corona installing them?

Just curious on external testing practices for plugins.

Cheers.

During development, you make a folder called plugin in your project and drop the .lua files that go with the plugin so that when you do the require you do:

local spotify = require( “plugin.spotify” )

The spotify.lua file is a standard module that you would require if it were stand alone.

Rob

Very nice. You ave been busy lately!

Hey @develephant have you considered making plugins out of these?

Rob

Yes, I have :), but justed wanted to do a little testing first. Is it possible to distribute, or perform testing with plugins outside of Corona installing them?

Just curious on external testing practices for plugins.

Cheers.

During development, you make a folder called plugin in your project and drop the .lua files that go with the plugin so that when you do the require you do:

local spotify = require( “plugin.spotify” )

The spotify.lua file is a standard module that you would require if it were stand alone.

Rob