[WordPress] 外掛分享: Simple JWT Auth – JWT Authentication for WP REST API

首頁外掛目錄 › Simple JWT Auth – JWT Authentication for WP REST API
WordPress 外掛 Simple JWT Auth – JWT Authentication for WP REST API 的封面圖片
全新外掛
安裝啟用
尚無評分
22 天前
最後更新
問題解決
WordPress 7.0+ PHP 8.2+ v2.0.0 上架:2024-10-30

內容簡介

Simple JWT Auth 外掛為 WordPress REST API 提供安全的 JSON Web Token 認證,允許外部應用程式驗證使用者並獲取存取令牌和更新令牌,確保資料傳輸的安全性與現代化的無狀態認證層。

【主要功能】
• 使用 JSON Web Token 進行安全認證
• 發行短期存取令牌與不透明更新令牌
• 更新令牌旋轉與重用檢測功能
• 支援多種簽名演算法
• 提供存取令牌驗證端點
• 可配置的速率限制與 CORS 支援

外掛標籤

開發者團隊

⬇ 下載最新版 (v2.0.0) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「Simple JWT Auth – JWT Authentication for WP REST API」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

Simple JWT Auth – JWT Authentication for WordPress REST API secures and protects your WordPress REST API using JSON Web Tokens. It lets external applications authenticate WordPress users, obtain an access token and a refresh token, and call any REST endpoint with a standard Bearer header.
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact, self-contained way to transmit information securely between two parties. This plugin uses JWT to provide a modern, stateless authentication layer for headless WordPress builds.
Modern access-token and refresh-token architecture

Issues short-lived access tokens (stateless JWTs) alongside opaque refresh tokens.
Refresh-token rotation — every refresh issues a new access token and a new refresh token, so a leaked refresh token is quickly invalidated.
Reuse detection — re-presenting a rotated refresh token outside a short grace window revokes the entire token family and fires the simplejwt_auth_token_reuse_detected action.
Revocation — revoke a single refresh token, its whole rotation family, or all of a user’s sessions. Refresh tokens are also revoked automatically on logout and password reset.
Validation — a dedicated endpoint verifies an access token on demand, and a /me endpoint returns the authenticated user’s profile.

Secure by design

Signing keys (secret_key, private_key, public_key) are encrypted at rest with AES-256-GCM using a key-encryption-key (KEK) defined in wp-config.php.
Refresh tokens are opaque and stored only as SHA-256 hashes — the raw token is never written to the database.
Rate limiting (configurable) is applied to the token, refresh, and revoke endpoints to deter brute force.
Optional CORS support and optional XML-RPC disabling.

Modern and flexible

Requires PHP 8.2+ and WordPress 7.0+.
Supports HS256, HS384, HS512, RS256, RS384, RS512, ES256, and ES384 signing algorithms.
Extensible via filter and action hooks for payload, expiry, issuer, CORS headers, and the token response.

Built for developers — authenticate WordPress from React, Next.js, Vue, mobile apps, and any other external client. Configuration can live in the plugin settings or be overridden with wp-config.php constants.

Support & questions: WordPress support forum
Bug reports: GitHub issues tracker
Source code: GitHub repository

Enable PHP HTTP Authorization Header
HTTP Authorization is the mechanism clients use to send credentials to a server — a special Authorization header in the HTTP request. Many shared hosts have it disabled by default.
Shared hosts
Add the following to your .htaccess file:
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]

WP Engine
Add the following to your .htaccess file:
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

Configuration
Simple JWT Auth uses a Key-Encryption-Key (KEK) to encrypt and decrypt the JWT signing keys (secret_key, private_key, and public_key) at rest. Define it in wp-config.php with the SIMPLE_JWT_AUTH_ENCRYPT_KEY constant. The KEK must be exactly 32 characters long and must never be revealed.
define( 'SIMPLE_JWT_AUTH_ENCRYPT_KEY', 'your-32-char-encryption-key' );

Rotating the KEK invalidates the stored signing keys and requires re-entering them in the plugin settings (a simplejwt_kek_mismatch error is returned until then).
Signing keys via wp-config.php constants
Instead of storing signing keys in the database, define them directly in wp-config.php file. Constants take precedence over the plugin settings, and their values are used as-is (plaintext, not encrypted).
define( 'SIMPLE_JWT_AUTH_ALGORITHM', 'HS256' ); // HS256, HS384, HS512, RS256, RS384, RS512, ES256 or ES384.
define( 'SIMPLE_JWT_AUTH_SECRET_KEY', 'your-secret-key' ); // Required for HS* algorithms (min 32 chars).
define( 'SIMPLE_JWT_AUTH_PRIVATE_KEY', '-----BEGIN PRIVATE KEY-----...' ); // Required for RS*/ES* signing.
define( 'SIMPLE_JWT_AUTH_PUBLIC_KEY', '-----BEGIN PUBLIC KEY-----...' ); // Required for RS*/ES* verification.

SIMPLE_JWT_AUTH_ALGORITHM — overrides algorithm, the JWT signing algorithm.
SIMPLE_JWT_AUTH_SECRET_KEY — overrides secret_key, used for symmetric (HS256/384/512) signing and verification.
SIMPLE_JWT_AUTH_PRIVATE_KEY — overrides private_key, used for asymmetric (RSA/EC) signing.
SIMPLE_JWT_AUTH_PUBLIC_KEY — overrides public_key, used for asymmetric (RSA/EC) verification.

When a constant is defined, the matching field on the Settings page is disabled and marked “Defined in wp-config.php”.
Enabling authentication
For a fresh install, authentication is disabled by default. Turn on Enable JWT in the plugin settings, choose an algorithm, and provide the required signing key(s) before issuing tokens.
REST Endpoints
The plugin registers the auth/v1 namespace with five endpoints:

POST /wp-json/auth/v1/token — Authenticate credentials; return an access token and a refresh token.
POST /wp-json/auth/v1/token/refresh — Rotate an access token (and refresh token) using a refresh token.
POST /wp-json/auth/v1/token/revoke — Revoke a refresh token and its rotation family.
POST /wp-json/auth/v1/token/validate — Validate an access token.
GET /wp-json/auth/v1/me — Return the authenticated user’s profile.

Generate a token
Submit a POST request with username and password:
curl --location 'https://example.com/wp-json/auth/v1/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "wordpress_username",
"password": "wordpress_password"
}'

Success response:
{
"code": "simplejwt_auth_credential",
"message": "Token created successfully",
"data": {
"status": 200,
"id": "2",
"email": "[email protected]",
"nicename": "username",
"display_name": "User Name",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOi...",
"token_expires_in": 900,
"refresh_token": "opaque-refresh-token",
"refresh_expires_in": 1209600
}
}

Store the access token and refresh token in your application (a secure cookie, localStorage, or a wrapper such as localForage). Then pass the access token as a Bearer header on every protected request:
Authorization: Bearer your-access-token

For example, creating a post with an access token:
curl --location 'https://example.com/wp-json/wp/v2/posts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOi...' \
--data '{
"title": "Hello headless",
"content": "Created through the REST API with JWT authentication.",
"status": "publish"
}'

Refresh a token
Access tokens are short-lived. When one expires, send the refresh token to /token/refresh (in the body or as a Bearer header) to rotate it and receive a new access token and refresh token:
curl --location 'https://example.com/wp-json/auth/v1/token/refresh' \
--header 'Content-Type: application/json' \
--data-raw '{ "refresh_token": "opaque-refresh-token" }'

The response has the same shape as the token response. Each rotation invalidates the previous refresh token.
Revoke a token
To invalidate a session, send the refresh token to /token/revoke:
curl --location 'https://example.com/wp-json/auth/v1/token/revoke' \
--header 'Content-Type: application/json' \
--data-raw '{ "refresh_token": "opaque-refresh-token" }'

Success response:
{
"code": "simplejwt_token_revoked",
"message": "Token has been revoked",
"data": { "status": 200 }
}

Validate a token
Verify an access token with a POST request carrying the Bearer header:
curl --location --request POST 'https://example.com/wp-json/auth/v1/token/validate' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOi...'

Success response:
{
"code": "simplejwt_valid_token",
"message": "Token is valid",
"data": { "status": 200 }
}

Current user
Get the authenticated user’s profile:
curl --location 'https://example.com/wp-json/auth/v1/me' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOi...'

Success response:
{
"code": "simplejwt_user",
"message": "User data retrieved successfully",
"data": {
"status": 200,
"id": 2,
"email": "[email protected]",
"nicename": "username",
"display_name": "User Name",
"roles": ["administrator"]
}
}

REST Errors
Every error returns a consistent envelope with a stable code, a message, and a data.status HTTP status. Common codes include:

simplejwt_missing_credentials — Username or password is missing.
simplejwt_invalid_username — The username is not registered on this site.
simplejwt_incorrect_password — The password is incorrect.
simplejwt_no_auth_header — The Authorization header is missing.
simplejwt_bad_auth_header — The Authorization header is malformed.
simplejwt_invalid_token — The access token is invalid (bad signature, malformed, or not yet valid).
simplejwt_expired_token — The access or refresh token has expired.
simplejwt_invalid_refresh_token — The refresh token is unknown or invalid.
simplejwt_reused_refresh_token — A rotated refresh token was reused; the token family was revoked.
simplejwt_revoked_token — The token has been revoked.
simplejwt_bad_issuer — The token issuer does not match this server.
simplejwt_unsupported_algorithm — The configured signing algorithm is unsupported.
simplejwt_rate_limited — Too many requests; please try again later.
simplejwt_bad_config — JWT authentication is not configured or is disabled.
simplejwt_bad_encryption_key — The key-encryption-key is not configured.
simplejwt_invalid_enckey_length — The key-encryption-key is not exactly 32 characters.
simplejwt_kek_mismatch — The key-encryption-key was rotated; re-enter the signing keys.

Available Hooks
Simple JWT Auth is developer-friendly and exposes filter and action hooks to override its default behaviour.
simplejwt_cors_allow_headers (filter)
Modify the CORS Access-Control-Allow-Headers value. Default: Access-Control-Allow-Headers, Content-Type, Authorization.
add_filter( 'simplejwt_cors_allow_headers', function ( $headers ) {
return $headers;
} );

simplejwt_auth_iss (filter)
Change the token iss (issuer) claim. Default: get_bloginfo( 'url' ).
add_filter( 'simplejwt_auth_iss', function ( $iss ) {
return $iss;
} );

simplejwt_not_before (filter)
Change the token nbf (not-before) claim. Default: the issue time.
add_filter( 'simplejwt_not_before', function ( $not_before, $issued_at ) {
return $not_before;
}, 10, 2 );

simplejwt_auth_expire (filter)
Change the token exp (expiry) claim. Default: time() + access token lifetime (900 seconds by default).
add_filter( 'simplejwt_auth_expire', function ( $expire, $issued_at ) {
return $expire;
}, 10, 2 );

simplejwt_payload_before_sign (filter)
Modify the JWT payload before it is signed. The payload contains the iss, iat, nbf, exp, sub, and jti claims (plus the legacy data.user.id).
add_filter( 'simplejwt_payload_before_sign', function ( $payload, $user ) {
return $payload;
}, 10, 2 );

simplejwt_token_before_dispatch (filter)
Modify the token response before it is returned to the client. The response includes the access token, refresh token, and their lifetimes.
add_filter( 'simplejwt_token_before_dispatch', function ( $data, $user ) {
return $data;
}, 10, 2 );

simplejwt_auth_token_reuse_detected (action)
Fired when refresh-token reuse is detected and a token family is revoked. Arguments: $user_id, $family_id, $ip.
add_action( 'simplejwt_auth_token_reuse_detected', function ( $user_id, $family_id, $ip ) {
// Alert, log, or revoke further sessions here.
}, 10, 3 );

simplejwt_rate_limit_max (filter)
Change the maximum number of attempts allowed within the rate-limit window. Default: 10.
add_filter( 'simplejwt_rate_limit_max', function ( $max ) {
return $max;
} );

simplejwt_rate_limit_window (filter)
Change the rate-limit window, in seconds. Default: MINUTE_IN_SECONDS (60).
add_filter( 'simplejwt_rate_limit_window', function ( $window ) {
return $window;
} );

Postman Collection
A ready-to-use Postman collection is bundled with the plugin. Open Simple JWT Auth → Documentation in your WordPress admin and click Download Postman Collection, then import the JSON into Postman. The collection preconfigures your site URL and includes the token, refresh, revoke, validate, and /me requests.

延伸相關外掛

文章
Filter
Mastodon