accountsSDK is a small library that installs the "Sign in with LiveChat" button on any website or app. It also wraps OAuth flow in an easy-to-use API.
npm install --save @livechat/accounts-sdk
Example sign in with LiveChat button designs. Assets are available here.
import AccountsSDK from '@livechat/accounts-sdk';
// create new SDK instance with it's options
const sdk = new AccountsSDK({
client_id: '<your_app_client_id>'
});
document.getElementById('login-button').onclick = (e) => {
if (e && e.preventDefault) {
e.preventDefault();
}
sdk.popup().authorize().then((authorizeData)=>{
const transaction = sdk.verify(authorizeData);
if (transaction != null) {
// authorization success
// authorizeData contains `accessToken` or `code`
// transation contains state and optional code_verifier (code + PKCE)
}
}).catch((e)=>{
})
};
Authorize using a popup. It's possible to pass options to override constructor options.
const sdk = new AccountsSDK(options)
const promise = sdk.popup(options).authorize()
Authorize using iframe. It's possible to pass options to override constructor options. Works when a browser doesn't check for ITP, and user authentication is set.
const sdk = new AccountsSDK(options)
const promise = sdk.iframe(options).authorize()
Authorize using a full redirect. Authorize function performs full browser redirect to an authorization server. authorizeData function checks if authorization is set in URL.
const sdk = new AccountsSDK(options)
sdk.redirect().authorizeData().then((authorizeData)=>{
// authorize data found in URL
const transaction = sdk.verify(authorizeData);
}).catch((e)=>{
// authorize data missing, redirect to authorization server
sdk.redirect().authorize()
})
client_idstring required registered client IDorganization_idstring organization IDpromptstring useconsentto force consent prompt in a popup and redirect flowsresponse_type='token'string OAuth response type, usetokenorcodepopup_flow='auto'stringauto- don't show popup when credentials are not required,manual- always show popupstatestring OAuth state param, auto generated by SDK when emptyverify_state=truebool a function that returns transaction should verify if the state matchesscopestring - custom scope list, must be a subset of preconfigured client ID scopesredirect_uristring OAuth redirect URI - current location by defaultemail_hintstring fill in an email hint in formsserver_url='https://accounts.livechat.com'string authorization server urlpath=''string option to provide a path when loading accounts, for example/signuptrackingobject tracking querystring paramstransaction.namespace='com.livechat.accounts'string transaction keys prefixtransaction.key_length=32number transaction random state lengthtransaction.force_local_storage=falsebool try to use local storage instead of cookiespkce.enabled=truebool Oauth 2.1 PKCE extension enabled forcodegrantpkce.code_verifierstring override auto generated code verifierpkce.code_verifier_length=128number code verifier length, between 43 and 128 characters https://tools.ietf.org/html/rfc7636#section-4.1pkce.code_challange_method='S256'string code challange method, useS256orplain
One of components uses crypto library called SJCL. We include a custom build in src/vendor/sjcl.js that only includes the pieces we need and avoids bundler errors caused by Node requires in standard version.
To do this build yourself and verify code integrity, do the following:
- Clone the SJCL repo.
- Check out a
1.0.8version. - Run
./configure --without-all --with-sha256 --compress=noneto configure our build. - Run
make sjcl.jsto build the file. - Compare newly created
sjcl.jswith the one included insrc/vendor.
To release a new version of the package to npm:
-
Make sure you're logged in:
npm login
This will prompt you for your npm username, password, and 2FA code (if enabled). You can confirm you're logged in with:
npm whoami
-
Verify you have publish permissions:
npm publish --dry-run
This will simulate publishing without actually publishing. If you don't have permission, you'll see:
403 Forbidden - You do not have permission to publish to this organizationYou can also check your permissions with:
npm access list collaborators @livechat/accounts-sdk | grep "$(npm whoami)"
Or list all collaborators with write permission:
npm access list collaborators @livechat/accounts-sdk | grep write -
Create a new branch for the release:
git checkout -b release-v2.0.11 # use the appropriate version number -
Update the version in
package.jsonfollowing semantic versioning:npm version patch # for bug fixes (2.0.10 -> 2.0.11) npm version minor # for new features (2.0.10 -> 2.1.0) npm version major # for breaking changes (2.0.10 -> 3.0.0)
This command updates
package.json, creates a commit, and creates a git tag locally. -
Build the package:
npm run build
-
Run tests to ensure everything works:
npm test -
Push the branch with the tag:
git push origin release-v2.0.11 --follow-tags
-
Create a pull request with the version update and get it reviewed and merged.
-
After the PR is merged, checkout the main branch and pull the latest changes:
git checkout master git pull origin master
-
Publish to npm:
npm publishNote: The git tag created by npm version will be included when the PR is merged. Make sure you have the necessary permissions to publish to the @livechat organization on npm. The prepare script will automatically run the build before publishing.