Questions tagged [http-status-code-308]

The HTTP response status code 308 Permanent Redirect is a way of performing a redirection which does not allow the HTTP method to change

The request, and all future requests should be repeated using another URI. 307 and 308 (as proposed) parallel the behaviours of 302 and 301, but do not allow the HTTP method to change. So, for example, submitting a form to a permanently redirected resource may continue smoothly.

18 questions
0
votes
1 answer

com.algorithmia.APIException: 308 unexpected API response

I'm using algorithmia, a repository of trained ML functions on the Internet. Few weeks ago, an issue showed up, and since then, haven't been able to figure out what's going on. I'm executing this code, which can be found on their official…
0
votes
1 answer

QNetworkAccessManager doesn't handle HTTP Status Code 308

I'm testing my code for compatibility with HTTP 3xx status codes (redirects). I'm interested in codes 301, 302, 303, 307 and 308. All of those work fine with my code, except 308. My client testcase is Qt/C++ based, and my testing server is…
Stefan Monov
  • 11,332
  • 10
  • 63
  • 120
0
votes
2 answers

Invalid HttpStatusCode

We are using external rest API (Vimeo) to upload video from phone to server. One of the steps in performing this operation is to check how many bytes have been uploaded. To do this, PUT request should be performed on specific URL with headers: -…
Uros
  • 2,099
  • 7
  • 23
  • 50
1
2