1
vote
1answer
47 views

LoginViewController: “The configured redirect_uri of the client application is invalid”

Our company has been using SoundCloud integration in our iOS apps for a while without issue. But recently our apps are getting the following error when trying to sign in: "invalid client: The ...
-3
votes
2answers
161 views

How to Play music in my ios application from a link ( soundcloud ) [closed]

The below is the link where I uploaded my song file "https://soundcloud.com/smkumar84/summa". From here I need to play the music in my iphone application. How can I do it in my iphone app?
0
votes
1answer
91 views

Compress audio upload to soundcloud

Our ios app records to wav, then that can be uploaded to Soundcloud. As recordings can be 5mins, thats 50 meg, so upload is slow. is there any Obj C code for ios that compresses eg to AAC or IM4 which ...
-1
votes
1answer
112 views

Integration SoundCloud to Stream iOS [closed]

I'm trying to integrate SoundCloud API to my app, but I've some problems I'm using this tutorial: http://developers.soundcloud.com/docs/api/ios-quickstart# However when I finish it the files are not ...
0
votes
1answer
496 views

SoundCloud Libraries Not Found

I'm having some trouble with the SoundCloud API for iOS. I've followed the directions on their quickstart guide (here) and set my Header Search Path like so. Xcode is finding SCUI.h and until ...
1
vote
1answer
247 views

SoundCloud API iOS, no sharing - only listening

I got a website where I make playlists with SoundCloud. Now I want to make an app for iPhone so the users can listen to the songs there as well. ...
0
votes
0answers
100 views

libOAuth2Client.a seems to be not compiling in sound cloud implementation

I am having a nightmare getting SoundCloud implemented in my iOS app. I followed all the instructions here but after lots of searching on here and on google I can't get it to work. I think the ...
3
votes
1answer
512 views

Implementing SoundCloud API in iOS app - getting error

I have followed the instructions to include the sound cloud api into my app at the following link exactly: https://github.com/soundcloud/CocoaSoundCloudAPI But when I get to the part where I need to ...
1
vote
1answer
256 views

SoundCloud Error (clang failed with exit code 1)

I'm trying to impement SoundCLoudApi from here, but there is clang error without any description: Ld ...
0
votes
2answers
3k views

Expected a property attribute before 'strong'

I am adding the SoundCloud API to an iOS project and I am not using ARC. The SoundCloud code uses @property(nonatomic, strong, readonly) NSArray *accounts; Should I just change this to ...
2
votes
2answers
433 views

SoundCloud API and 401 Error for registered application

I have a problem with SoundCloud API in my application. I have created an app, what get link to the track (e.g. something like this http://api.soundcloud.com/tracks/48760960) and get stream_url, what ...
0
votes
1answer
125 views

SoundCloud Cocoa Auth Popup Modal is in Portrait while UIViewController is landscape

I'm working on integrating SoundCloud in my iOS 5 app but when I call [scAPI checkAuthentication] the popup modal appears in portrait mode, while my UIViewController is in landscape. This is extremely ...
0
votes
1answer
231 views

How to add comments through the SoundCloud API

I would like to post comments via the SoundCloud API but looking at the documentation it seems impossible, the only method available for /tracks/{id}/comments seems to be GET. When I try to send it a ...
2
votes
1answer
193 views

SoundcloudAPI Wrapper iOS5 authentication errors

I'm trying to prototype an app which utilizes Soundcloud's API endpoints, and integrates the cocoa-api-wrapper for cocoa and cocoa touch projects. The problem I'm having revolves around getting my ...
1
vote
1answer
494 views

Embedding SoundCloud player in iOS app

Is it possible to embed a soundcloud player in an iOS app? I've been searching around and all I can find is Javascript API. Is the only way to accomplish this through a UIWebView?
4
votes
1answer
566 views

SoundCloud API Apple Mach-O Linker (Id) Error

I'm trying to integrate the Cocoa SoundCloud API into my iPhone/iPad app. I've followed the instructions detailed here but when I try to Build and Run my project, I get the following error: Apple ...
4
votes
3answers
2k views

Uploading audio to facebook from iOS app?

I've been trying to integrate my app with Soundcloud, but I'm just finding that impossible and way too difficult, and there are no good tutorials out there. Are there any other ways to upload audio ...
0
votes
1answer
95 views

Returning to main view from UIWeb view after HTTP call

I'm using the SoundCloud Cocoa Wrapper API. To connect the users SoundCloud account to their Facebook account I use this: [scAPI performMethod:@"POST" onResource:@"connections" ...
2
votes
2answers
563 views

How to use Oauth properly

I haven't made much progress, so rather then look for an answer to the error stated in my original question, I think my problem would best be solved by some overall instructions on how to use Oauth ...
0
votes
1answer
274 views

Understanding the Soundcloud cocoa wrapper api

I'm somewhat familiar with Cocoa, Objective-C and iPhone Development using Xcode. I'm starting to incorporate this cocoa-wrapper in my iPhone project, but it's a steep learning curve for me. What ...
0
votes
1answer
253 views

How to create SoundCloud api object?

In my iPhone app, I'm trying to allow users to post an audio track to Facebook via Soundcloud. I've been going through this tutorial and have reached this line of code: [api performMethod:@"GET" ...
0
votes
1answer
242 views

JSON and Soundcloud

I'm using a cocoa wrapper API to post audio tracks from my iPhone app to Soundcloud. I have some basic functionality working, but I'm not sure where I am supposed input keys that Soundcloud gave me. ...
2
votes
1answer
6k views

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

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 ...
1
vote
1answer
1k views

Build dependencies and static libraries in Xcode 3

I'm trying to get the example project for an SoundCloud API wrapper working using XCode 3. There are some few basic instructions at the start, but I'm having trouble: QuickStart In your terminal: ...
0
votes
1answer
1k views

How to play soundcloud music in ios app?

I'm trying to play music from my profile in soundcloud, I downloaded sounCloud API project, but it looks very difficult, maybe exist easiest way? Help me please. Thank you.
1
vote
1answer
1k views

How to get uploaded tracks from soundcloud?

I have implemented Sound cloud api in my app to export songs to soundcloud. Now,I want to launch a browser in my app.This browser will allow the user to browse and listen to various other users songs ...