我想从react js向WSO2 IS 5.9.0发送加密的密码和解密的密码?

问题描述 投票:0回答:1

我正在使用react JS作为前端,并且想在使用]时将加密的密码发送到WSO2 IS 5.9.0。

curl --location --request POST 'https://x.x.x.x/oauth2/token' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic xxxx' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username=xxxxxxxxx' \
--data-urlencode 'password=abc12345' \
--data-urlencode 'scope=openid'

我想以加密形式发送密码,并在WSO2 IS端解密密码。我该如何执行.....?

我正在使用react JS作为前端,并且我想在使用curl --location --request POST'https:// xxxx / oauth2 / token'\ --header'Content-的同时将加密的密码发送到WSO2 IS 5.9.0。类型:text / plain'...

wso2 wso2esb wso2-am wso2is wso2carbon
1个回答
0
投票

根据spec,仅当客户端和服务器之间存在信任时,才可以使用密码授予。

© www.soinside.com 2019 - 2024. All rights reserved.