description |
---|
Explains how to install the WordPress JWT Authentication and integration with the Auth0 plugin. |
Auth0 provides a plugin to enable JWT authentication for your APIs. It is compatible with any API that uses the determine_current_user
function to retrieve the logged in user (such as WP REST API).
- Install WordPress JWT Authentication from the WordPress Store or download the zip file from WordPress JWT Authentication and upload the
wp-jwt-auth
folder to the/wp-content/plugins/
directory your WordPress installation. - Activate the plugin through the Plugins menu in WordPress.
- Aud: Usually your Client Id. Verifies that the token was intended for you.
- Secret: Your Client Secret. Verifies the token signature.
- Base64 Secret Encoded: If enabled, encodes the secret in based64.
- User Repository: Empty by default. If empty, the plugin checks for a user whose
User Property
matches theJWT Attribute
defined in each field. You can create a custom User Repository by implementing a static method calledgetUser
to receive the decoded JWT and return aWP_User
instance.
If the WordPress JWT Authentication plugin is installed and enabled, the latest version of the Auth0 plugin will give you the option to configure the WordPress plugin automatically, setting your client id, client secret and the Auth0 User Repository.
To authenticate a request using JWT, add an Authorization
header to the request:
Authorization: Bearer YOUR-TOKEN
for example:
Authorization: Bearer eyJhbGciOiJIUzIsNiIsInR5cCI6IkpXVCJ9.eyJjb250ZW50IjoiVGhpcyBpcyB5b3VyIHVzZXIgSldUIHByb3ZpZGVkIGJ5IHRoZSBBdXRoMCBzZXJ2rXIifQ.b47GoWoY_5n4jIyGghPTLFEQtSegnVydcvl6gpWNeUE