Skip to content
This repository has been archived by the owner on Aug 27, 2019. It is now read-only.

Add JWT Auth to Auth docs #200

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions guide/authentication/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,13 @@ $response = wp_remote_post( $url, array (
[http-basic]: https://tools.ietf.org/html/rfc2617
[basic-auth-plugin]: https://github.com/WP-API/Basic-Auth
[application-passwords]: https://github.com/georgestephanis/application-passwords

JSON Web Token Authentication
-----------------------------
As an alternative to oAuth for Token based authentication, you can use [JSON Web Token](https://tools.ietf.org/html/rfc75190 (JWT) authentication. An implimentation of the JWT standard, for the WordPress REST API is provided by the [JWT Authentication For The REST API](https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/).

Usage of this plugin is well documented in the plugin [README](https://github.com/Tmeister/wp-api-jwt-auth/blob/develop/README.md).

[WordPress.org Plugin Page](https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/)
[Git Repo](https://github.com/Tmeister/wp-api-jwt-auth)
[More Information On JWT](https://jwt.io/)