CoCart – JWT Authentication Wordpress Plugin - Rating, Reviews, Demo & Download
Plugin Description
This free add-on for CoCart allows you to authenticate via a simple JWT Token.
Enable PHP HTTP Authorization Header
Shared Hosts
Most shared hosts have disabled the HTTP Authorization Header by default.
To enable this option you’ll need to edit your .htaccess file by adding the following:
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
or
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
WPEngine
To enable this option you’ll need to edit your .htaccess file by adding the following (see this issue):
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
Configuration
- Set a unique secret key in your
wp-config.php
file defined toCOCART_JWT_AUTH_SECRET_KEY
. - Install and activate plugin.
Token Expiration
By default, the token expires after two full days but can be filtered to change to your preference using this hook cocart_jwt_auth_expire
.
Here is an example changing it to expire after just 2 hours.
add_filter( 'cocart_jwt_auth_expire', function() {
return MINUTE_IN_SECONDS * 120
});
Usage
- Authenticate via basic method with the login endpoint to get your token.
- Store the given token under
jwt_token
in your application. - Now authenticate any cart route with
Bearer
authentication with the token given.
Tools and Libraries
- CoCart Beta Tester allows you to easily update to prerelease versions of CoCart Lite for testing and development purposes.
- CoCart VSCode extension for Visual Studio Code adds snippets and autocompletion of functions, classes and hooks.
- CoCart Product Support Boilerplate provides a basic boilerplate for supporting a different product types to add to the cart with validation including adding your own parameters.
- CoCart Cart Callback Example provides you an example of registering a callback that can be triggered when updating the cart.
- CoCart Tweaks provides a starting point for developers to tweak CoCart to their needs.
- Official Node.js Library provides a JavaScript wrapper supporting CommonJS (CJS) and ECMAScript Modules (ESM).
Other Add-ons to further enhance your cart.
We also have other add-ons that extend CoCart to enhance your development and your customers shopping experience.
- CoCart – Cart Enhanced enhances the data returned for the cart and the items added to it. – FREE
- CoCart – CORS enables support for CORS to allow CoCart to work across multiple domains. – FREE
- CoCart – Rate Limiting enables the rate limiting feature. – FREE
They work with the FREE version of CoCart already, and these add-ons of course come with support too.
Join our growing community
A Slack community for developers, WordPress agencies and shop owners building the fastest and best headless WooCommerce stores with CoCart.
Bug reports
Bug reports for CoCart – JWT Authentication are welcomed in the CoCart – JWT Authentication repository on GitHub. Please note that GitHub is not a support forum, and that issues that aren’t properly qualified as bugs will be closed.
More information
- The CoCart plugin official website.
- The CoCart Documentation
- Subscribe to updates
- Like, Follow and Star on Facebook, Twitter, Instagram and GitHub
Credits
This plugin is created by Sébastien Dumont.
Screenshots
No screenshots provided