Coder Social home page Coder Social logo

Comments (4)

Nyholm avatar Nyholm commented on May 22, 2024 1

Closing this since it is super old.

from buzz.

lmammino avatar lmammino commented on May 22, 2024

I haven't dug on the code but I think this discussion may be helpful How to post data in PHP using file_get_contents?

from buzz.

denisvmedia avatar denisvmedia commented on May 22, 2024

If we check the code:

public function post($url, $headers = array(), $content = '')
{
    return $this->call($url, RequestInterface::METHOD_POST, $headers, $content);
}

/**
 * Sends a request.
 *
 * @param string $url     The URL to call
 * @param string $method  The request method to use
 * @param array  $headers An array of request headers
 * @param string $content The request content
 *
 * @return MessageInterface The response object
 */
public function call($url, $method, $headers = array(), $content = '')
{
    // ...
}

We'll see that Browser::post() expects string and not array. Can this be the cause of the problem?

P.S. It seems that also only Curl client supports getFields() in the request object. And thus Browser::submit() will fail as well with any bundled client except Curl.

from buzz.

egeloen avatar egeloen commented on May 22, 2024

Posting an array of data is not possible with the file_get_contents adapter because the stream context does not support it only curl does. To fix it, you need to convert it to an url encoded format with the http_build_query method.

@kriswallsmith What about converting it when it is passed to stream_context_create in case it is an array? It should fix the issue mentionned by @denisvmedia about the Browser::submit method.

from buzz.

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.