GithubHelp home page GithubHelp logo

Comments (4)

mfn avatar mfn commented on June 2, 2024 1

Well, first thing coming to my mind is https://www.php.net/manual/en/arrayaccess.offsetget.php . Guzzle isn't using that so…

from guzzle.

mfn avatar mfn commented on June 2, 2024

The GuzzleHttp\Client->__call('offsetGet', Array) error message suggests that there might be an unexpected dynamic method call or configuration issue within Guzzle.

But the log further below shows this:

#10 app/vendor/guzzlehttp/guzzle/src/Client.php(89): GuzzleHttp\Client->request('offsetGet', 'router', Array)
#11 /app/src/Remote/RemoteClient.php(36): GuzzleHttp\Client->__call('offsetGet', Array)

This is your code calling this? What happens at and around like 36 of RemoteClient.php?

from guzzle.

mvn-trungtran-dn avatar mvn-trungtran-dn commented on June 2, 2024

@mfn
thank for answer to me !

About your question

This is your code calling this? What happens at and around like 36 of RemoteClient.php?

RemoteClient.php is a block of code I provided in the description above.
line 36 is create new Client:

// RemoteClient.php
32 public function sendRequest()
33    {
34        $client = new Client([
35         'base_uri' => $this->request->getBaseUri(),
36         'headers' => $this->request->getHeaders(),
37    ]);
38     $options = array_merge($this->request->getParams(), ['timeout' => env('TIMEOUT'), 'connect_timeout' => env('CONNECT_TIMEOUT')]);
39      $response = $client->request(
40         $this->request->getMethod(),
41        $this->request->getUri(),
42        $options
43    );
    .....
    }

I see this line GuzzleHttp\Client->__call('offsetGet', Array) is call when create new Client(), but offsetGet is weird parameter, I don't think it send from my code
Feel free to ask me to provide more code or information . Thank you !

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.