flyingL123
flyingL123
I'm calling `$brand = Bigcommerce::updateBrand(48, ['name'=>'Del Sol']);`. My app is using Laravel 4.2. If I place this line before the one above, it works correctly: ``` define('STDIN',fopen("php://stdin","r")); ``` This is...
Thanks for getting back to me. That doesn't really work for me because there are times I create multiple connections, which causes the constant to redefine itself. I will just...
What about just replacing STDIN with `fopen("php://stdin","r")`? So the line would just read: ``` curl_setopt($this->curl, CURLOPT_INFILE, fopen("php://stdin","r")); ``` Is there any reason the not to change the line to that...
The domain is `http://mikedev.mybigcommerce.com/`. Store hash is `grbzj9js`. Please let me know if you need anything else.
That's totally fine. You can do whatever you need.
Could it make a difference that I am using oAuth and you aren't?
I just made some minor changes to the client to support oAuth: https://github.com/flyingL123/bigcommerce-api-php I'm receiving this error consistently 100% of the time. The only difference between our code is that...
I just tried again a few more times, and received the same error.
Hi @aleachjr - I just tried the same code using standard Auth instead of oAuth, and it worked. Any idea why this is happening?
I understand. The problem is that Bigcommerce requires oAuth for certain things, like webhooks, but then your SDK's don't support oAuth, so it puts us developers in a tough position....