【发布时间】:2020-02-19 13:20:05
【问题描述】:
我使用 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 端解密密码。 我该如何执行这个.....?
【问题讨论】:
标签: oauth-2.0 wso2 wso2-am wso2is wso2carbon