
New problem just started recently. My app is getting an HTTP 503 error. Wireshark shows this query:
GET /shows/1871 HTTP/1.1
Accept: */*; q=0.5, application/xml
Accept-Encoding: gzip
User-Agent: unirest-ruby/1.1
Host: api.tvmaze.com
Returns this result:
HTTP/1.1 503 Service Temporarily Unavailable
Server: nginx/1.4.6 (Ubuntu)
Date: Thu, 29 Sep 2016 19:09:18 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 221
Connection: keep-alive
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx/1.4.6 (Ubuntu)</center>
</body>
</html>
But this query, from the same host, works correctly:
GET /shows/1871 HTTP/1.1
Host: api.tvmaze.com
Accept: */*
User-Agent: unirest-ruby/1.1