[WordPress] 外掛分享: User Data Fields For JWT Authentication

前言介紹

  • 這款 WordPress 外掛「User Data Fields For JWT Authentication」是 2021-02-23 上架。
  • 目前有 60 個安裝啟用數。
  • 上一次更新是 2022-08-01,距離現在已有 1006 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
  • 有 3 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

ahmedriyadh |

外掛標籤

jwt | wp-api | wp-json | json web authentication |

內容簡介

,原文描述並未完成,缺少後續內容。

原文外掛簡介

WordPress is a good content mangement system for building websites, but it will be better if you build like mobile apps,
With the wordpress rest api you can create posts, edit posts, view posts, Users, Uploading Media etc…
but the problem with the wordpress rest api it does not provide any authentication methods for third party application like mobile apps
The Jwt Plugin on wordpress.org does provide that
and this plugin is just a addon for that plugin
So this plugin is useful if you don’t want to make another request to fetch user data like Id etc..
because you have to get the id of the user in ordet to get all data
It really simple plugin
it writed with 50 lines of code, the size of the plugin is 3Kb
Note: This Is Plugin For
JWT Authentication for WP REST API Plugin
so if the jwt authentication plugin is not installed
this plugin will not add the fields to it endpoints
and the fields will be added only if the token is getted successfully
Example request (before install the plugin):
{
    “token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC8xOTIuMTY4LjAuMTgyIiwiaWF0IjoxNjE0MDg3NDQ2LCJuYmYiOjE2MTQwODc0NDYsImV4cCI6MTYxNDY5MjI0NiwiZGF0YSI6eyJ1c2VyIjp7ImlkIjoiMSJ9fX0.KeAUc7PiTne0_PThsSAWo1ruvl2Ocu-fbCn2jG7zkoE”,
    “user_email”: “[email protected]”,
    “user_nicename”: “admin”,
    “user_display_name”: “admin”
}
Example response (after install the plugin):
{
    “token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC8xOTIuMTY4LjAuMTgyIiwiaWF0IjoxNjE0MDg2NjQyLCJuYmYiOjE2MTQwODY2NDIsImV4cCI6MTYxNDY5MTQ0MiwiZGF0YSI6eyJ1c2VyIjp7ImlkIjoiMSJ9fX0.nyDOICdQcZKbWZo2kQRp_eLBkuxjnK_rpxs-HJREyCg”,
    “user_email”: “[email protected]”,
    “user_nicename”: “admin”,
    “user_display_name”: “admin”,
    “user_id”: 1,
    “user_login”: “admin”,
    “user_first_name”: “sfd”,
    “user_last_name”: “”,
    “user_roles”: [
        “administrator”
    ],
    “user_role”: “administrator”,
    “user_registered”: “2021-02-17 09:21:29”,
    “user_url”: “http://localhost”,
    “user_status”: “0”,
    “user_avatar_url”: “https://secure.gravatar.com/avatar/22feea4605ac5b7163eac439b5241034?s=96&d=mm&r=g”,
    “user_activation_key”: “”
}
Of course you can add the code of this plugin to your Theme,
but this is not recommened because when you change the theme or update it
the changes will revert back, you can create child theme for that
but instead you can just install this simple plugin
Don’t forget to setup (JwtAuthenticatonForWordpress)[https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/]
Github
Can Add User Data Fields To Validate Token Endpoint ?
This plugin can also add user data fields to validate token endpoint,
Unfortunately, the jwt extension does not support using the filter for validate_token function,
So You Will Need To Modify Some Codes Inside Jwt Plugin Codes
Go To \wp-content\plugins\jwt-authentication-for-wp-rest-api\public\class-jwt-auth-public.php
And At The End Of Function That Named validate_token
In Line 302
Edit This Code
From :
/** If the output is true return an answer to the request to show it */
return array(
‘code’ => ‘jwt_auth_valid_token’,
‘data’ => array(
‘status’ => 200,
),
);
To :
$value = array(
‘code’ => ‘jwt_auth_valid_token’,
‘data’ => array(
‘status’ => 200,
)
);
/** If the output is true return an answer to the request to show it */
return apply_filters(‘jwt_auth_validate_token’, $value, $token);
Now you have done,
the plugin should be able to add new values by adding a filter
Note :
If you updated the jwt plugin,
you should again edit the code because it will be removed
REQUIREMENTS
JWT Authentication for WP REST API Plugin

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「User Data Fields For JWT Authentication」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


1.2.0 | 1.2.1 | trunk |

延伸相關外掛(你可能也想知道)

  • JWT Authentication for WP REST API 》此外掛使用 JSON Web Tokens (JWT) 做為驗證方式,擴充了 WP REST API 。JSON Web Tokens 是一種開放且具有行業標準的方法,用來在兩方之間安全地傳遞聲明。,...。
  • GS JWT Authentication for WP REST API 》:, {, "message": "OTP is Successfully Send to your Mobile Number." , }, , , Verify otp by billing mobile number, , Request method:, POST /wp-j...。

文章
Filter
Apply Filters
Mastodon