Jeff Kreitner

Results 4 comments of Jeff Kreitner

I found that by switching to the CurlClient it will work. ``` public function __construct( Oauth $oauth ) { $this->oauth = $oauth; $this->oauth->setHttpClient('CurlClient'); } ```

In my controller that logs you in. Instead of using OAuth::consumer('Facebook') or whatever, I am injecting Oauth into the controller so you would use $this->oauth->consumer('Facebook') ```

It probably should be. I have had the issue for quite some time now on several projects. I have dug in a few times but couldn't find the issue before...

I just ran into this the past few days. If you update your payload to contain a headers key it will get around that error. Just testing this in production,...