- 我有一個要求,誰願意與基本身份驗證訪問與他的證件(UN/PWD)的API或摘要身份驗證用戶身份驗證
- 亦通所需的憑據(UN/PWD)在請求驗證訪問後端服務
我的突觸中提取的配置是這樣的:WSO2 APIM認證
<filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION">
<then>
<property name="api.ut.backendRequestTime"
expression="get-property('SYSTEM_TIME')"/>
<property name="password"
expression="wso2:vault-lookup('PayAdmin-- ZenoAPI51.0')"/>
<property name="unpw"
expression="fn:concat('user',':',get-property('password'))"/>
<property name="Authorization"
expression="fn:concat('Basic ', base64Encode(get-property('unpw')))"
scope="transport"/>
<send>
<endpoint name="PayAdmin--ZenoAPI5_APIproductionEndpoint_0">
<http uri-template="http://localhost:8080/payment/{uri.var.name}"/>
</endpoint>
</send>
</then>
什麼,我想知道的是:
curl -X POST --header "Content-Type: application/json" --header "Accept: application/json" --header "Authorization: Bearer 2e13c9b3c8717f43d093cfc7c63994bb" -d "{}" http://<IP address of APIM Server>:8280/Zeno1/1.0.0/payment/name
此捲曲只能採取承載令牌而是如何在捲曲
您的要求是使用CURL將用戶名和密碼發送到後端,是嗎? – farasath