error uploading images when creating soundcloud app - soundcloud

I'm trying to upload images to SoundCloud, to create a new app in the Developers section, but whenever i try to upload the logo and some screenshots puts: "upload failed, please try again". It's been like that for a week and I want to upload our app deej() but I can't submit the app until I upload the images, and there is no way of uploading (I tried with Chrome, IE, Mac, PC but it's always the same problem).

You should contact Soundcloud Support on this matter, this is not a support forum but related to programming questions.

Related

How to open my apps audio player to play audio after clicking an audio link which is present in email?

I am working on iphone application which plays audio in app.
I can share audio links via email. The person with whome I have shared link can listen to audio by clicking on audio link in the email.
What I need is, when user will click on audio link in email it should open my application and start playing in my apps audio player(if my app is already installed on the device). if app is not installed prompt user to download my app.
How to achieve this?
Thanks.
Well you will need to register your own URL scheme for your app. Read Apples Implementing Custom URL Schemes on how to do this.
But you can not make iOS prompt to install you app, since the OS does not know about you app.
What you could do is always open a website which will try to open your by its URL sheme and it this fails present the use a webpage that offers them to download it.
Please check this link http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-working-with-url-schemes/. I hope it will be helpful.
About showing a prompt what you can do is always put your app's app store link in email saying "Please install app using below link if you don't have app installed on your device" or some other meaningful message you can have. Link will redirect user to app store page where user can install the app.

Register Tumblr app for iPhone app

I registered an app on the Tumblr developer website for my iPhone app. The app need to upload a photo to Tumblr with tags and caption and it's running normally. However, the photo after uploaded on Tumblr does not show my iPhone app name below the photo. It just shows the caption, tags under the photo. As Diptic (iPhone app) or Instagram, I see there is an app icon and a link to its app homepage under the uploaded photo.
I'm wondering is there anything wrong when I registered the app on Tumblr developer page or my iPhone app client missed something?
P/S: My iPhone app is using xAuth.
Thank you for reading my question. If you aren't clear anything, just let me know.
Regards,
Tien
Try to upload your app photo in 24 bit PNG format with 128x128 pixels.
You will see the app icon if you success. You can try to save this 128x128 PNG from different apps, or you can try to save PNG in 8 bit format.

How to allow users to upload images to our site via iOS browser?

Our site allows web users to upload images to their WordPress/BuddyPress profile and posts. We have a responsive design, but iOS will not allow users to upload images when posting from their iphone. We don't want to have to build an entire app for this - any suggestions?
It's possible, by using a free app.
See this:
http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/users-cant-upload-their-avatar-when-on-mac/
Suggest users use a different browser like iCab. iCab at the App Store.

Uploading the video through iPhone App programmatically

How can we upload the video through iPhone App programmatically, can any one please provide me some sample code for the same.
Got a sample from:
http://urinieto.com/2010/10/upload-videos-to-youtube-with-iphone-custom-app/
But always getting "NoLinkedYouTubeAccount Error" while uploading the video.
Please help me.
Many Thanks
iPhone Developer
Sign in via web to your account. Subscribe to a channel and it will work. This must link your Google's account to your Youtube's account.
I just resolved similar problem by creating a channel in Youtube's account. Please check for the settings of Youtube's account before uploading the video.

iphone - Upload image to flickr like Hipstamatic

I'm developing a small app allowing users to upload their photos to flickr.
I have tried ObjectiveFlickr framework, but it is too buggy (can compile on device, but not on simulator) and not very convenient for users (user must leave the app, open Safari to go to flickr website to authenticate, then switch back to the app again)
I've seen apps like Hipstamatic doing a really good job on this, it doesn't need to open Safari, everything's done in the app.
Could anyone please suggest some ways to do that?
Thanks a lot
First, I have used ObjectiveFlickr without problems in the iOS Simulator.
Second, ObjectiveFlickr itself does not concern itself with the browser that is used for authentication. It just generates the URL you need to open to let the user authenticate your app. Whether you open this URL in Safari or in a web view inside your app is entirely your choice.