Привет, я пытаюсь выполнить базовую c аутентификацию в перехватчике wso2 без проверки на пользователя, определенного в wso2.gw.conf. Мой определенный перехватчик проверяет основной заголовок c auth. так же это способ отключить проверку подлинности basi c с помощью WSO2 против пользователя, определенного в wso2.gw.conf.
Кроме того, почему пароль моего заголовка basi c Authentication заменяется хешированным паролем, как определено в wso2.gw.conf
["b7a.users"]
["b7a.users.xxx"]
password="1F44F70E2JLKF4E469D32D5742D86A590E10FE04x"
My Open Api Spe c:
paths:
/rt/PING:
get:
description: ""
operationId: PING
x-wso2-throttling-tier: 6PerMin
x-wso2-request-interceptor: setAuthHeaderInRequest
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: "#/components/schemas/PING"
application/xml:
schema:
$ref: "#/components/schemcomponents:
components:
securitySchemes:
basicAuthentication:
type: http
scheme: basic
schemas:
PING:
type: object
properties:
PONG:
type: string
xml:
name: PING