我正在嘗試爲Wordpress網站構建原生Android應用程序。我正在使用WP REST API v2(https://wordpress.org/plugins/rest-api/)來獲取帖子和其他必需的屬性。我需要對用戶進行身份驗證,爲此我使用了WP REST API的JWT身份驗證(https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/) 生成和驗證令牌的API可以正常工作。但是,當我嘗試傳遞標題中生成的令牌時,我不斷收到下面的錯誤。集成Wordpress授權並使用Android登錄
{
"code": "jwt_auth_bad_config",
"message": "JWT is not configurated properly, please contact the admin",
"data": {
"status": 403
}
}
任何有關哪裏出錯的建議?請求幫助讓這個東西運行。