0

Im not sure how i should deal with a HTTP_STATUS of 302 in my response to an API request?

Im trying to write a small Node.js script and i have a feeling this is to do with the HTTPS upgrade of the request i send?

Any help would be great

Chris Matheson
  • 348
  • 2
  • 7
  • Can you provide details about the request you're making and the response you're getting? – Greg S Sep 14 '12 at 14:53
  • sorry didn't make myself clear. My Node http request returns a 302 response and then does nothing else. i take it that i will have to follow the redirect myself ? – Chris Matheson Oct 11 '12 at 08:48

1 Answers1

0

It's nothing (specifically) to do with HTTPS, it just a temporary redirect.

Read this article on Wikipedia.

Neil
  • 11,059
  • 3
  • 31
  • 56