jwt-auth
jwt-auth copied to clipboard
Enable JSON Web Token authentication for the WordPress REST API.
The architecture of the auth flow in this plugin is great; I understand the security concerns. Although it disables perhaps the primary use-case of such a feature: Wordpress as a...
Hi. I am using curl -X POST https://example.org/wp-json/wp/v2/token \ -F api_key=12345ascde \ -F api_secret=54321edcba but it only works with my admin account, how do I login other users?
Hi. So I received a token with my username and password. I included the token in the header under "Authorization" (as the key) with Bearer in front of the Token....
Hi. I have received a token from logging into my account. However, when I try to access pages specific to this account I logged in with, I am getting a...
Would be helpful to know if this plugin is intended as a draft for inclusion in the JSON-API core of Wordpress. We are building out a headless package ecosystem for...
Howdy, I am using this with GuzzleHttp Client class as follows: ```php $blogService = new Client([ 'base_uri' => $baseBlogUrl . '/wp-json/wp/v2/', 'headers' => [ 'Authorization' => 'Bearer ' . $result['access_token']...
I'm having some trouble changing the default error messages jwt-auth sends back when login is failed. At the moment I get something very specific like: ``` ERROR: invalid username. Lost...
I have some Wordpress installations in different subfolders and when why try generate key-pairs in the profile page nothing happens. After inspect the network request in browser inspector I noted...
Hello, Thanks for developing this. Is the only one compatible with WP 5.22. However, I don't understand how to configure the api-key and api-secret. How is this configured? Thanks.
Hello! This is [PHPStan config](https://packagist.org/packages/szepeviktor/phpstan-wordpress) ```yaml # Start command: composer require --dev szepeviktor/phpstan-wordpress && vendor/bin/phpstan analyze includes: - vendor/phpstan/phpstan/conf/bleedingEdge.neon - vendor/szepeviktor/phpstan-wordpress/extension.neon parameters: level: max paths: - %currentWorkingDirectory%/wp-includes/ autoload_directories: - %currentWorkingDirectory%/wp-includes/...