Giter VIP home page Giter VIP logo

Comments (7)

florianpreusner avatar florianpreusner commented on June 28, 2024 1

You are totally right. I will fix that asap.
Until than you can use a workaround to set headers by the deprecated approach (using headers directly on root hierarchy of client.

Example:

guzzle:
  clients:
    test:
      base_url: "testurl"
      ## START: DEPRECATED BUT WORKING APPROACH
      headers:
          Content-Type: "application/x-www-form-urlencoded; charset=utf-8"
      ## END: DEPRECATED BUT WORKING APPROACH
      options:
        auth:
          - "username"
          - "passwort"
        verify: false
        debug: true

from eightpointsguzzlebundle.

RootProgger avatar RootProgger commented on June 28, 2024

I try that too but that also doesn't work.
Only when i set the Content-Type in Post-Call it work.

from eightpointsguzzlebundle.

florianpreusner avatar florianpreusner commented on June 28, 2024

I've tried it again and it works for me by using following code:
config.yml:

guzzle:
    logging: true
    clients:
        httpbin:
            base_url: "https://httpbin.org"
            headers:
                Content-Type: "application/x-www-form-urlencoded; charset=utf-8"
            options:
                verify: false
                debug: true

Controller:

    public function indexAction(Request $request)
    {
        $client = $this->get('guzzle.client.httpbin');
        $params = ['form_params'=> ['test' => 'aha']];

        $response = $client->post('/post', $params);
        $body = $response->getBody()->getContents();

        var_dump($body);

Output Request:
bildschirmfoto 2016-12-15 um 10 22 38

I used dev-master which is similar to latest stable version 5.2.1.

from eightpointsguzzlebundle.

RootProgger avatar RootProgger commented on June 28, 2024

Look at your Content-Type in Request, there's no charset only type

from eightpointsguzzlebundle.

florianpreusner avatar florianpreusner commented on June 28, 2024

You are right. Didn't saw that, sorry.
Unfortunately this is something that comes from Guzzle Client. By using form_params this header will be overridden by Guzzle: https://github.com/guzzle/guzzle/blob/master/src/Client.php#L303

So without using form_params everything works like expected (except using headers in options, which is still a bug).

from eightpointsguzzlebundle.

florianpreusner avatar florianpreusner commented on June 28, 2024

I created a new ticket regarding the override of content-type to split these two "bugs": #84

from eightpointsguzzlebundle.

florianpreusner avatar florianpreusner commented on June 28, 2024

Released v5.2.2, fix: headers in options
https://github.com/8p/GuzzleBundle/releases/tag/v5.2.2

Issue with form_params and content-type will be continued in #84

from eightpointsguzzlebundle.

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.