soundcloud

SoundCloud HTML5 widget no autoplay, iOS [duplicate]

送分小仙女□ 提交于 2020-01-06 02:56:05
问题 This question already has answers here : Can you autoplay HTML5 videos on the iPad? (6 answers) Closed 5 years ago . The HTML5 SoundCloud widgets autoplay feature is not working on iOS5 and iOS6. I have not tested lower than iOS 5. See: http://www.bushytunes.net/test.asp This page has the feature enabled by including the auto_play=true parameter in the iframe src. Can this be fixed? Or is there a hack I can add to my application to enable this feature? 回答1: Autoplay is disabled for any audio

Soundcloud embed stream URL (Node, JSON)

谁说我不能喝 提交于 2020-01-05 08:29:37
问题 I'm currently using Node to scrape a blog that stores selected data in a JSON file. When scraping a blog post that contains an embedded track from Soundcloud I seem to only be able to collect the iframe src and not that actual track link (either soundcloud link or stream link). When I scrape the iframe src url I seem to only be able to get a link that's in the following format: https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/120261008&color=000000&auto_play=false&show

Soundcloud (Oauth2) API getting access token fails

心已入冬 提交于 2020-01-03 12:31:13
问题 I'm trying to authorize users on my site based on a Soundcloud login. It uses Oauth authentication. The user has to click a button on my site and is redirected to the Soundcloud site, where it logs in. After that the user get redirected back to my site where I have to get an accessToken. This fails with message: The requested URL responded with HTTP code 0. I've dumped the curl stuff if you need it: [data]; False [info][url] : https://api.soundcloud.com/oauth2/token [content_type] ; NULL

Track Images(artwork_url) not returned by Soundcloud API

ε祈祈猫儿з 提交于 2020-01-03 04:28:06
问题 I am using Soundcloud API to retrieve a list a tracks in my windows phone app(using C#). In the .json file of the tracks, I see that there is no image returned for some tracks (i.e. "artwork_url":null ). (NOTE: On the other hand, in other 3rd party Soundcloud apps on WP8, I can see the same tracks along with their respective images.) Is there any way I could receive complete information? Thanks in advance! 回答1: If its null, its not defined. SC uses on their website a logic to use the default

SoundCloud API gives “Uncaught SyntaxError: Unexpected token : ” error

谁说胖子不能爱 提交于 2020-01-02 09:26:17
问题 In the console it's giving me the error "Uncaught SyntaxError: Unexpected token : ", but if I access direct SoundCloud URL in my browser then it's giving valid JSON. Earlier this code was working fine and today this issue started. <html> <head> <script src="https://api.soundcloud.com/resolve.json?url=https://api.soundcloud.com/tracks/251912676/?secret_token=s-EkyTy&client_id=08f79801a998c381762ec5b15e4914d5"></script> </head> <body> <h2>hellooo</h2> </body> </html> Update: Below is the actual

Stream URL of soundcloud track where streamble is false

和自甴很熟 提交于 2020-01-02 07:42:53
问题 There is a property "streamable" of a track which is if "false", I'm unable to get stream_url of that track. But I see there are few downloaders which gets stream_url of the very same song & then gets then cdn link of that track. I even did authenticate my app but no luck finding the stream_url. Here is what I did. import soundcloud # create client object with app credentials client = soundcloud.Client(client_id='YOUR_CLIENT_ID', client_secret='YOUR_CLIENT_SECRET', redirect_uri='REDIRECT_URL'

Only 50 SoundCloud groups returned by GET

狂风中的少年 提交于 2020-01-02 05:41:13
问题 I have joined 92 groups in SoundCloud, but when I do an SC.get("/me/groups"....etc I only get 50 returned to me. When I do a curl http://api.soundcloud.com/users/6999000/groups.json?client_id=MY_CLIENT_ID I only get 50 results returned to me? Any way to get the full number of group entries returned? 回答1: There is an offset GET parameter that you can pass in order to retrieve tracks above the 50 items limit. curl http://api.soundcloud.com/users/6999000/groups.json?client_id=YOUR_CLIENT_ID

Soundcloud API SC.stream (track not loading)

独自空忆成欢 提交于 2020-01-02 05:24:07
问题 I'm streaming music from the soundcloud API, and sometimes when I call SC.stream the track does not stream and I get the error: "GET http://api.soundcloud.com/tracks/80608808/stream?client_id=78bfc6a742a617082972ddc5ef20df2a 404 (Not Found)" The GET request works for some tracks and not for others. I cannot figure out why or if there is an issue with the SC API. He is a replication of my problem on plnkr: http://plnkr.co/edit/TMVWGg Thanks! 回答1: This is because some soundcloud tracks are not

Soundcloud API SC.stream (track not loading)

天涯浪子 提交于 2020-01-02 05:24:05
问题 I'm streaming music from the soundcloud API, and sometimes when I call SC.stream the track does not stream and I get the error: "GET http://api.soundcloud.com/tracks/80608808/stream?client_id=78bfc6a742a617082972ddc5ef20df2a 404 (Not Found)" The GET request works for some tracks and not for others. I cannot figure out why or if there is an issue with the SC API. He is a replication of my problem on plnkr: http://plnkr.co/edit/TMVWGg Thanks! 回答1: This is because some soundcloud tracks are not

Soundcloud api: Geo Tag search not working

故事扮演 提交于 2020-01-01 11:15:30
问题 Geo search tags appear not to be working. I have an app that has been running for months with no changes. It broke recently and upon troubleshooting I found that geo tag search, both specific and with wild card, returns no results. $(document).ready(function() { SC.initialize({ client_id: 'my id here'}); SC.get("/tracks", {limit: 200, tags: 'geo:lon=-118.*'}, SearchTracks); }); var SearchTracks=function Search (tracks){ for (var key in tracks) {console.log(tracks[key].title+" "+tracks[key]