bigcommerce-oauth-client
v0.4.1
Published
A TypeScript NodeJS Oauth client for BigCommerce App development. Handles BigCommerce App's Oauth flow for app installation, app load, verify current customer jwt, and generate customer login jwt.
Downloads
5
Readme
BigCommerce OAuth Client
A TypeScript NodeJS Oauth client for BigCommerce App development. Handles BigCommerce App's Oauth flow for app installation, app load, verify current customer jwt, and generate customer login jwt.
Getting Started
Installation
npm install bigcommerce-oauth-client --save
Basic Usage
import { BigCommerceOAuthClient } from "bigcommerce-oauth-client";
import { AccessToken } from "bigcommerce-oauth-client/lib/model/oauth";
const bigCommerceOAuthClient = new BigCommerceOAuthClient({
clientId: "xxxxxx", // replace it with your store hash
clientSecret: "xxxxxx" // replace it with your access token
});
// Example code to get products
const accessToken: AccessToken = await bigCommerceOAuthClient.authorize({
code: "xxxxxx", // replace it with the parameter in auth call back
scope: "xxxxxx", // replace it with the parameter in auth call back
context: "xxxxxx" // replace it with the parameter in auth call back
}, "https://auth.callback.uri"); // replace it with the auth callback registered in the app profile.
console.log(JSON.stringify(accessToken));
Configuration
When creating the bigcommerce-oauth-client instance, you can pass in additional configuration:
import { BigCommerceOAuthClient } from "bigcommerce-oauth-client";
const bigCommerceOAuthClient = new BigCommerceOAuthClient({
clientId: "xxxxxx", // replace it with your store hash
clientSecret: "xxxxxx", // replace it with your access token
storeHash: "xxxxx", // replace it with your store hash. Only needed for createCustomerLoginJwt()
baseURL: "https://login.bigcommerce.com", // Optional custom OAuth URL endpoint
timeout: 60000, // request timeout. Default is 1 minute
maxRetries: 5, // max number of retries. Default is 5
retryDelay: 5000, // Wait time before next retry. Default is 5 seconds.
// the wait time for each retry is calculated by retryDelay * nthRetry.
// For example, if retryDelay=5000 and it is the 3rd retry, then wait for 5000*3=15000 ms.
});
Below is the complete list of config parameters:
timeout
(default:60000
)- Request timeout. Default is 1 minute
maxRetries
(default:5
)- Max number of retries when error happened. Default is 5
retryDelay
(default:5000
)- Wait time before next retry. Default is 5 seconds. The wait time for each retry is calculated by
retryDelay * nthRetry
. For example, ifretryDelay = 5000
and it is the 3rd retry, then wait for5000 * 3 = 15000 ms
. For429
errors, the wait time is indicated byX-Rate-Limit-Time-Reset-Ms
response header. See the BigCommerce Document for details.
- Wait time before next retry. Default is 5 seconds. The wait time for each retry is calculated by
Error Handling
bigcommerce-oauth-client throws an error with a friendly error message when
- 4xx error, except for
- 429 error if
maxRetries
is not reached yet - 404 error if
config.failOn404 = false
- 429 error if
- Timeout
- Max retry reached on 429 error and 5XX errors
If you need to get the underlying axios error object, you just need to
try {
// call bigcommerceOAuthClient
} catch (err) {
let axiosError = err.cause; // the axios error object is in the error cause
let request = axiosError.request;
let response = axiosError.response;
}
For more information, see Axios Error Handling.
Versioning
This project strictly follows Semantic Versioning.
Support
If you have a problem with this library, please file an issue here on GitHub.
License
MIT