我有wso2am-2.5.0和apimcli-1.1.0
全部从此处下载:https://wso2.com/api-management/install/
我尝试配置apimcli
并在本地运行的wso2am中使用
因此,我添加了名为local
的环境:
apimcli add-env -n local
--apim https://localhost:9443
--registration https://localhost:9443/identity/connect/register
--import-export https://localhost:9443/api-import-export-2.2.0-v2
--api_list https://localhost:9443/api/am/publisher/v0.12/apis
--token https://localhost:9443/oauth2/token
请注意文档中定义为--api_list
的参数--list
但是apimcli add-env --help
改为显示--api_list
最后我尝试获取API列表:
apimcli list apis -e local -u admin -p admin --insecure --verbose
但是它给了我以下输出:
Executed ImportExportCLI (apimcli) on Wed, 26 Sep 2018 15:59:48 EEST
[INFO]: Insecure: true
[INFO]: apis called
[INFO]: Environment: 'local'
[INFO]: Reg Endpoint read: https://localhost:9443/identity/connect/register
Getting ClientID, ClientSecret: Status - 403 Forbidden
Error: <nil>
Body:
<html>
<head>
<title>Error 403</title>
</head>
<body>
<h1>Error 403 - Forbidden</h1>
</body>
</html>
Error: Request didn't respond 200 OK: 403 Forbidden
[INFO]: EnvKeysAll: &{map[]}
[ERROR]: connecting to https://localhost:9443/oauth2/token
apimcli: Unable to connect. Reason: Status: 400 Bad Request
[ERROR]: Unable to connect.: Status: 400 Bad Request
Exit status 1
答案 0 :(得分:1)
似乎发布者API版本错误。
--api_list https://localhost:9443/api/am/publisher/v0.12/apis
将其设为v0.13
,然后重试。
编辑:看来DCR端点也有误。像这样更改它。
--registration https://localhost:9443/client-registration/v0.13/register
似乎cli附带的自述文件不正确。 :-/
请改用以下文档。
https://docs.wso2.com/display/AM250/Migrating+the+APIs+and+Applications+to+a+Different+Environment