You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and I have a simple Laravel route to test this. But the page returns HTTP ERROR 500. Spending a couple of hours digging into the code, I've found this in guzzle():
And this basically passes an empty array to the get() method in PendingRequest().
When I removed $data from ->$type(self::$baseUrl . $request, $data) - the code works great. I can't quite tell why this code causes such a fuss if query is empty.
I'm not sure if it's related to issue #47, it might be.
Any thoughts appreciated!
The text was updated successfully, but these errors were encountered:
Thanks, Yes I think it is related, I noticed the where wasn't taking effecting I've written out a new way to work for filtering, I need to do a release and update the docs doing a bit more testing before I do. I'll pick this up tomorrow.
I love the work this library does to make it easier to refresh the oauth token. But I've hit an issue doing a simple request:
and I have a simple Laravel route to test this. But the page returns HTTP ERROR 500. Spending a couple of hours digging into the code, I've found this in guzzle():
And this basically passes an empty array to the get() method in PendingRequest().
When I removed $data from
->$type(self::$baseUrl . $request, $data)
- the code works great. I can't quite tell why this code causes such a fuss if query is empty.I'm not sure if it's related to issue #47, it might be.
Any thoughts appreciated!
The text was updated successfully, but these errors were encountered: