jwt-auth
jwt-auth copied to clipboard
Enable JSON Web Token authentication for the WordPress REST API.
Hey guys, great plugin. I'm having an issue where all the Woocommerce default endpoints that are whitelisted by default in your plugin are being blocked? We're on NGINX if that...
Duplicate of #39 but I don't know how to adjust that pull request, sorry. Hopefully this one wil get accepted.
This fixes a notice thrown since WP 5.5 when a REST route is registered without explicitly adding a permission callback.
This makes several updates that fixes new WordPress warnings and brings things up to standard so that Travis builds will run. Updates: - Upgrade PHPCS Composer Installer to 0.7 -...
Hi, I have a quesiton. Why not get token with username/email and password ? Is it a bad practice ? Is it possible to enable this functionnality with your plugin...
After sucessfully generate the token I'm able to make some REST api requests but if I request: curl -X GET https://my-domain.com/wp-json/wp/v2/token/validate \ -H 'Authorization: Bearer ACCESS_TOKEN' It shows: {"code":"rest_authentication_invalid_bearer_token","message":"Invalid bearer...
i used for authentication I created `api-key` and `api-secret` in profile page ``` { "api_key": "3AHiAkLol3YeOLLEQrDdQ8tNf", "api_secret": "zdQ$YiV*3CKOhm^cTNgr*tZ7XrsaX3nQ" } ``` Also added in config file ``` define('JWT_AUTH_SECRET_KEY', '5yDulS24m?Q]rD[rt[W0@X*J*c?QJNnXig=hh+ID{YKi)]H#:9E!Zi%-]q^l]I2A'); define('JWT_AUTH_CORS_ENABLE', true);...
Use get_home_url to creat the rest URI. Use apache_request_header in case $_SERVER didn't retrieve it.
Hellou, i would like to know where to put api_secret key, if i put in params it visible to every user. So my questions is where to put api_secret it...
The problem with WordPress rest API is that there's no official robust and simple mechanism to authenticate rest API. Different plugins add their own implementation to authenticate their own API,...