I’m creating a mobile application which plays music stored in my SoundCloud account.
Is there any way to create an automatic login to my SoundCloud account (PHP)? I don’t want each user to have to use OAuth because it is only accessing my account and they will have already logged into my site.
Basically i just want to have a list of users tracks, and have the users be able to add or delete tracks from this account with my web form.
All the documentation I’ve seen uses OAuth to log into individuals accounts but i only want to access my account.
any help or a direction to look would be great
thanks
Here’s my suggestion: have your users create individual SoundCloud accounts for themselves, then create an interface that allows them to share individual tracks with you, which you can then aggregate into a playlist of some sort (which could then be streamed to whatever device you wish, via SoundCloud).
This has the following advantages:
Basically, you’re dumping links sent to you into an RSS feed, which are super easy to work with both cross-browser and cross-OS. I’d personally use Drupal for this, but I’m sure there are ways to do this just as easily in Joomla!, WordPress or any other CMS worth its salt.