rob
rob
@pankajEdreamz oAuth is required to use webhooks, so yes it is neccessary to create app in developers account. Assuming you have obtained the clients oauth token already and have authenticated,...
Hi @pankajEdreamz, Most of your questions about creating a public app can be answered here: https://developer.bigcommerce.com/api/using-oauth-intro But in an attempt to answer: 1) Yes, you can use webhooks on your...
Do you still need help with this? Paste the code being used to update the rule image.
I added oAuth support on Client and Connection, so far it seems to be very stable with this new updated library (connection would intermittently drop on old oauth branch). oAuth...
STDIN is not available through the browser, only from CLI. Place this in the `__construct()` method: `define('STDIN',fopen("php://stdin","r"));`
@yingliangzhang Place `define('STDIN',fopen('php://stdin', 'r'));` in the `__construct()` method of **Bigcommerce/Api/Connection.php**
@Lewis: Thanks for your opinion. If you have a better suggestion, please feel free to post it.
Defining STDIN in the Connection construct once will work across the entire library, and will satisfy the fact that there were native BC functions that explicitly used STDIN in some...
Hey @flyingL123 just wanted to chime in that I tested your code with the newest library (with my own oAuth support), and it worked successfully. Can you make sure that...
Hi @flyingL123 Yes you would receive 429 but it would not be available from `Bigcommerce::getLastError()` (at least not in my experience), so you would have to manually parse the body...