0
votes
2answers
67 views

401 during access token setup

I've been attempting to get this working for the past day or so without any luck. I've finally simplified the code down to it's bare minimum and can't seem to find a solution. The $callbackURL is set ...
1
vote
1answer
118 views

Migrating from OAuth1 to OAuth2

We have an existing application on SoundCloud that was created some time ago and set up to use OAuth1. Recently we needed to expand SoundCloud-related functionality and, because of some problems with ...
0
votes
0answers
29 views

soundcloud oauth2 redirect weirdness

When the redirect happens I also see the *access_token* as a parameter in the anchor. I didn't even ask for an access_token just yet because I don't have the code or I am missing something? ...
0
votes
0answers
94 views

SoundCloud HTTP code 0

I'm creating an Omeka plugin to upload audio to SoundCloud. I have this working on our local test environment, but I'm getting an error when I run it on EC2, "The requested URL responded with HTTP ...
1
vote
1answer
175 views

Soundcloud as Oauth Provider: How to make it connect only one time

I'm currently implementing an Oauth consumer service which is going to use Soundcloud as an Oauth service provider as well. But I'm having the following issue with it: Taking Facebook or Twitter ...
1
vote
1answer
86 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
1answer
224 views

Soundcloud API returns 401 error on server-side Python authentication

Trying to authenticate in Python to test a registered app, as per "Authenticating without the SoundCloud Connect Screen": http://developers.soundcloud.com/docs/api/guide#user-credentials import ...
0
votes
1answer
160 views

Soundcloud + PHP: Authenticating without the Soundcloud screen and uploading tracks

I am building a simple site using the Soundcloud API that needs to do the following: -- upload tracks to a single account without requesting user authentication (ie., Authenticating without the ...
3
votes
1answer
320 views

Unable to refresh token after expiration

I can authenticate and fetch an access_token and the corresponding refresh_token fine (subsequent API interactions are also fine). However, I seem to only be able to refresh a token (POST to ...
1
vote
2answers
562 views

Soundcloud api access Token (Oauth2)

Test whit php-soundcloud I try to use the script php-soundcloud (Oauth 2) and I encounter a problem after user login. I do exactly the tutorial wiki: ...
2
votes
0answers
554 views

Redirect URI mismatch iOS soundcloud

I'm developping an iOS app which use soundcloud API. I followed this tutorial : https://github.com/soundcloud/CocoaSoundCloudAPI Everything was fine until the login step.. I try to upload a song ...
0
votes
1answer
125 views

OAuth and invisible authenticate method

I'm trying to find an authorization endpoint for Soundcloud like the https://api.twitter.com/oauth/authenticate one on Twitter. I'm using OAuth 1. Without an /oauth/authenticate endpoint, I need to ...
0
votes
0answers
28 views

Sign in with soundcloud - multiple subdomains

I am building an app that is using "Connect with Soundcloud". I have few subdomains in my app and would like to be able to connect from all of them. Is there a way of adding subdomains to the app or I ...
0
votes
1answer
202 views

HTTPError: 401 Client Error

I'm using Python soundcloud API to implement authenticated user's soundcloud videos in my web application. I followed this steps http://developers.soundcloud.com/docs#authentication, the first time I ...
0
votes
2answers
230 views

Problems with redirection while implementing oAuth2 for blackberry using webworks

I am trying to implement a SoundCloud app for blackberry phones using webworks frame work. I am using OAuth2 scheme for authorization. So far I am able to display the SoundCloud log-in page from ...
3
votes
1answer
928 views

401 error code when using Soundcloud API OAuth2

I am creating an iPhone app using the TestApp application that came with the Soundcloud Coca API wrapper download. When I use the key and client id and call back URL there is no problem. I can log ...
3
votes
1answer
1k views

Soundcloud (Oauth2) API getting access token fails

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 ...
1
vote
2answers
893 views

How to get the “oauth access secret” for a connection to the soundcloud api

Sorry if the question is stupid, but I am new to using APIs of Websites. But since a long time I wanted to learn this and today started with the simple example of how to access information from ...
2
votes
1answer
3k views

Soundcloud API, PHP, and OAuth

I'm building a site, and I need to query my last two tracks from my soundcloud account and display them on my page. I've read the Soundcloud API documentation but it seems obscure and far from my ...