描述 - 我有一个与http://robustestom.appspot.com绑定的网站www.robustest.com。
当我想从Chrome扩展程序Postman向/ user / signup(robustest)提出发布请求时,我收到以下错误
Request URL:http://robustest.com/user/signup
Request Method:POST
Status Code:301 Moved Permanently
**Response Header -**
Alternate-Protocol:80:quic
Content-Length:233
Content-Type:text/html; charset=UTF-8
Date:Mon, 30 Dec 2013 03:43:43 GMT
Location:http://www.robustest.com/user/signup
Server:ghs
X-Frame-Options:SAMEORIGIN
X-XSS-Protection:1; mode=block
但是当我对http://robustestom.appspot.com/user/signup开火时,它按预期工作。
为什么我们需要 - 我们正在进行扩展,我们需要针对我们的doamin发布请求。
调试 - 我可能错了,但看起来,所有发布请求都会重定向到他们的反对部分'GET',因为起源不是'robustest.com',而是'chrome扩展'
答案 0 :(得分:1)
301正在从robustest.com重定向到www.robustest.com。将www添加到扩展程序发出请求的域中,301错误应该消失。