Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I have request to SoundCloud API sometimes I have "Error 503 - Service Unavailable". What is it and how it repair?

share|improve this question

1 Answer

A HTTP 503 signals that the webserver is overloaded or in maintenance. This also means you cannot fix the underlying problem. (other than maybe try to perform less requests if possible)

share|improve this answer
... Or catch the exception, sleep for a number of seconds and try again. – carlspring Jul 4 '12 at 9:50
2  
@carlspring: "sleep for a number of seconds and try again" the implication of the HTTP standard is that you should do that only if there is a Retry-After header telling you when it would be worthwhile trying again. – Raedwald Sep 5 '12 at 16:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.