soundcloud

Soundcloud application connect via Facebook connect can't run the script for call back

冷暖自知 提交于 2019-12-08 04:50:35
问题 It seems like Soundcloud's problem. If you have an application on Soundcloud and your members try to connect to this application they will see two options: Sign in with your Soundcloud account. Sign in with your Facebook account. The problem is with Facebook connect. Normally if you click on the Facebook connect button it has to open a popup, then you accept and login. But the Soundcloud Facebook connect button doesn't open any popup window and that's why it cannot run the javascript code

Play event not firing on start on HTML5 widget

泪湿孤枕 提交于 2019-12-08 03:53:11
问题 When SoundCloud HTML5 Player Widget is loaded with autoplay option, play event not firing when track starts. However there is a timeout between loading the widget (or loading other URL into the widget) and when the track starts, so it's nice widget to call the event. Is this by design or is it issue to be solved? 回答1: The HTML5 Player widget should fire a SC.Widget.Events.PLAY event when the auto_play option is used. Here's a code snippet I used to verify: HTML: <!doctype html> <html> <head>

Rendering SoundCloud widget for a private track using PHP API

北城以北 提交于 2019-12-08 03:18:46
问题 I am trying to render a SoundCloud HTML5 widget using the PHP API, but every time I run the command I think should return the HTML for the widget, I simply get an Exception: The requested URL responded with HTTP code 302 I realise this is a redirect. What I don't know is why that's all I ever get, or what to do about it to actually get the widget HTML. The documentation on the API says that to embed the widget using PHP you should do this: <?php require_once 'Services/Soundcloud.php'; //

Soundcloud API - How to get all Favorite Sets?

自闭症网瘾萝莉.ら 提交于 2019-12-08 03:14:04
问题 Is there an official way of getting all Favorites including the favorite Sets of the user or getting all playlists including the favorite sets ? i tried the following urls but none of them gets the job done: /me/favorites/sets /me/sets /me/playlists Any Ideas ? 回答1: You have to wait a bit, its part of their new API. Just change the user-id to yours. https://api-v2.soundcloud.com/users/1672444/likes?limit=10&offset=0&linked_partitioning=1 来源: https://stackoverflow.com/questions/27619743

Soundcloud content retrieval without a client ID. Is it at all possible?

╄→尐↘猪︶ㄣ 提交于 2019-12-08 01:26:55
问题 Soundcloud have locked off their API and nobody is able to request a new Client ID. Before they closed it off they were simply ignoring API key requests for months. They obviously have their reasons but it's been this way for ages now and it's really annoying. Does anybody know any cheeky workarounds to retrieve track data from a supplied username? I've tried parsing the dom and scraping it but it doesn't work as they return "no javascript" errors when scraping which renders the homepage and

Get list of related tracks HTTP API SoundCloud

心已入冬 提交于 2019-12-07 22:39:20
问题 I wasn't able to find anything fitting in HTTP API documentation. As I know, there's some tracks popping out in SC widget after current track is finished, therefore there is some related tracks functionality in SC itself, yet can we access it via API? I.e get a list of tracks, related to given track's id. 回答1: Disclaimer: This is an undocumented endpoint and is subject to change at anytime by SoundCloud. There is an undocumented endpoint that allows you to access a track's related sounds:

SoundCloud: callback.html popup doesn't close

*爱你&永不变心* 提交于 2019-12-07 19:03:10
问题 I've registered my SoundCloud app. I'm trying to implement the SoundCloud JS example code with the "callback.html" API https://developers.soundcloud.com/docs/api/sdks#authentication http://connect.soundcloud.com/examples/recording.html When I upload a recording, I get the authorization-login popup. After I login, the popup says "This popup should auto close..." But the popup doesn't close. And the recording isn't uploaded. I'm positive SC.initialize has my correct "clientID" and is

target specifies product type 'com.apple.product-type.framework'

China☆狼群 提交于 2019-12-07 16:54:03
问题 I'm trying to use a Soundcloud API wrapper for the iPhone following these instructions and now I'm getting this error: target specifies product type 'com.apple.product-type.framework', but there's no such product type for the 'iphoneos' platform Any ideas on how to solve this? 回答1: The SoundCloud API has two products: SoundCloudAPI.framework (a framework, for Mac OS X) libSoundCloudAPI.a (a static library, for iOS) If you're building an app for iOS you need to add libSoundCloudAPI.a only as a

Get a user's Most Recent SoundCloud Track Links

谁说胖子不能爱 提交于 2019-12-07 14:10:42
问题 I've been looking for a way to do this for a while because it seems like their should be one. I just want to automatically pull the 5 most recent tracks from my SoundCloud page and put them on my website under a 'Newest Audio' section. SoundCloud even does this themselves. If you go to a specific track, on the right bottom of the page it has a 'More tracks by USERNAME,' take a look: http://soundcloud.com/goldenstatewarriors/mark-jackson-on-the-dan The closest thing I have found is this: http:

Soundcloud API mobile OAUTH login using Google+ isn't working on Android

走远了吗. 提交于 2019-12-07 11:55:36
问题 I am working on an Android application that uses the mobile SoundCloud web auth page to log in to SoundCloud. The SoundCloud mobile web auth page provides you with three options for logging in, using SoundCloud, Facebook, or Google+. The interface looks like so: So far I can log in using my SoundCloud and my Facebook credentials but I fail when using Google+. Here's an abridged version of what I am doing: public class SoundCloudActivity extends Activity { ... @Override protected void onCreate