0
votes
0answers
45 views

Authentication with the SoundCloud JavaScript SDK in a Chrome Extension

I'm having trouble getting data from a SoundCloud user in a Chrome Extension I'm building. I'm calling the init function like this: SC.initialize({ client_id: '####', redirect_uri: ...
0
votes
1answer
467 views

How to let users login to my site using SoundCloud

I want to let users authenticate via SoundCloud for my ASP.NET MVC 4 project. Since there is no .NET SDK, I wrote a custom OAuth2Client to handle the authentication. After adding the client to my ...
0
votes
1answer
92 views

Can't get soundcloud access_token using php sdk. invalid_grant error

I am using soundcloud php sdk. It works successfully when i use the sdk to get track. But when i've tried to get an access Token in order to use it, the sdk send me back an error 401. After debugging ...
1
vote
1answer
87 views

Soundcloud Oauth implementation: Why the hash parameters?

Concerning https://github.com/sinatra/sinatra/issues/596, which i wrongly diagnosed as a sinatra bug. I'm having the following issue: I'm using Soundcloud OAuth workflow to implement single-sign-on ...
0
votes
0answers
149 views

Soundcloud API + Python Desktop Application

I have a question regarding writing Desktop applications in Python using the Soundcloud API. My problem is how can I implement a login functionality in my Desktop application without disclosing my ...
1
vote
1answer
145 views

Creating FollowMe link SoundCloud

I'm trying to create a simple FollowMe link for our Company and I am having a problem with the case when a user does not allow pop-ups. Here is the code: $(document).ready(function(){ ...
1
vote
1answer
104 views

What's the length of the access_token string?

I store the access token received from Soundcloud in a database and would therefore like to know what the maximum length of the string is. There's a similiar question here concerning Facebook. Does ...
2
votes
1answer
353 views

Soundcloud OAuth2 API: Getting invalid_scope error after user connection

I'm trying to implement Soundcloud connect and having a weird issue. First thing I do is send my users to ...
1
vote
0answers
211 views

Bug: SoundCloud OAuth2 connection will fail if Redirect URI includes “&” character

I'm getting an error while connecting to Sound API trought OAuth2. This is the connection link I use: ...
2
votes
1answer
226 views

Soundcloud: blank page with popup_callback.html when trying to auth using Facebook

I'm going through the OAuth2 flow with my application. The application seems to correctly request https://soundcloud.com/connect, with "Allow 'app name' access to your Soundcloud account?". However, ...
0
votes
1answer
315 views

SoundCloud - 401 Unauthorized Error - Authenticating without the SoundCloud Connect Screen

I'm new to SoundCloud and have been following the developers documentation in Authenticating without SoundCloud screen. However when my application sends the request I recieve a 401 Unauthorized ...
0
votes
2answers
299 views

How to listen for an OAuth2 redirect uri for native Cocoa application

I'm starting my first foray into making a mac application and the first order of business is authenticating my app using OAuth with Soundcloud. Sending the authorization request is simple, but where ...
0
votes
2answers
176 views

How to do Soundcloud Auth Dance in JS with a Redirect_URL that has GET Params

** SOLVED!! ** If you need to pass parameters to SC connect/auth then the only way to do this is to setup fancy urls via mod_rewrite. There 'seems' to be another method here, but you need to be ...
3
votes
1answer
717 views

SoundCloud's connect with Facebook not working in iOS

I'm trying to integrate my iOS app with SoundCloud. I've registered an app at "http://soundcloud.com/you/apps" and got the app ID and secret key in order to compose the auth URL: ...
0
votes
1answer
491 views

SoundCloud - How to login each user without redirecting to a page

I am creating an mobile app for soundcloud. its an hobby project to learn . after reading documents I understood that to get a token (to get a user authenticated) we need to redirect to another page ...
0
votes
1answer
273 views

Java Peer Not Autheticated

I'm trying to get OAuth through SoundCloud set up, but I'm having tremendous trouble. My newest issue is this: I have the user login through a popup window which is connected to SoundCloud. It gives ...
1
vote
0answers
460 views

Soundcloud - Problems getting access token - get message invalid_client

I've registered an app on soundcloud.com I'm trying to login with oauth 2 and php using curl I can what seems to login ok but when go to exchange the token for the access code I get the follow error: ...
3
votes
2answers
958 views

Automatic Soundcloud PHP Api authentication without user interaction

In my application i want to use the Soundcloud API with my own Soundcloud user. The Soundcloud API authentication process involves a user being redirected to the Soundcloud homepage, login and ...