Coder Social home page Coder Social logo

Comments (1)

memorycraft avatar memorycraft commented on April 24, 2024

hi,

i've encountered this issue during test with guzzle via behat, first request to "/foo" in POST method, and the response has 303 and Location header with "/bar", but the request was redirected to "/bar" with "POST" method.

by contrast access using php curl directly "/foo" was redirected to "/bar" with "GET" method.

code:

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://xxx.xxx.xxx.xxx/file");
curl_setopt($curl, CURLOPT_POST, true);
url_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
$data = array('file' => '' . realpath("./assets/test.txt") );
curl_setopt($curl, CURLOPT_POSTFIELDS, $data );

log:

HTTP/1.1 100 Continue

HTTP/1.1 303 See Other
Date: Wed, 11 Jul 2012 23:36:00 GMT
Server: Apache/2.2.15 (CentOS)
X-Powered-By: PHP/5.3.14
Location: http://xxx.xxx.xxx.xxx/files/12345
Method: GET
Content-Length: 12
Connection: close
Content-Type: application/json

HTTP/1.1 200 OK
Date: Wed, 11 Jul 2012 23:36:00 GMT
Server: Apache/2.2.15 (CentOS)
X-Powered-By: PHP/5.3.14
Content-Length: 231
Connection: close
Content-Type: application/json

any workarround to change method to default "GET" when redirect ?

thanks

from guzzle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.