简体   繁体   English

WSO2 API 管理器 2.6:apimcli export-api 错误

[英]WSO2 API Manager 2.6: apimcli export-api error

I am facing errors while trying to export APIs from my local installation (Windows 64 bit).我在尝试从本地安装(Windows 64 位)导出 API 时遇到错误。 I have WSO2 API Manager 2.6 installed on my machine with no fixes.我的机器上安装了 WSO2 API Manager 2.6,但没有修复。

The error is as shown below:错误如下图所示:

*c:\apimcli-2.0.3-windows-x64\apimcli>: apimcli export-api -n weatheralerts -v v1.0 -r admin -e APIM-DEV -k
Login to APIM-DEV
Username:admin
Password:apimcli: Error getting credentials Reason: The handle is invalid.
Exit status 1*

I tried to login and notice this error:我尝试登录并注意到此错误:

> *c:\apimcli-2.0.3-windows-x64\apimcli>apimcli login APIM-DEV -u admin -p admin -k --verbose Executed ImportExportCLI (apimcli) on Wed, 18 Mar 2020 01:50:30 CET [INFO]: Insecure: true Warning: Using --password
> in CLI is not secure. Use --password-stdin Getting ClientID,
> ClientSecret: Status - 403 Forbidden Error: %!s(<nil>) Body: <!--   ~
> Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights
> Reserved.   ~   ~ WSO2 Inc. licenses this file to you under the Apache
> License,   ~ Version 2.0 (the "License"); you may not use this file
> except   ~ in compliance with the License.   ~ You may obtain a copy
> of the License at   ~   ~ http://www.apache.org/licenses/LICENSE-2.0  
> ~   ~ Unless required by applicable law or agreed to in writing,   ~
> software distributed under the License is distributed on an   ~ "AS
> IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY   ~ KIND, either
> express or implied.  See the License for the   ~ specific language
> governing permissions and limitations   ~ under the License.   -->
> <html>
>     <head>
>         <title>Error 403</title>
>     </head>
>     <body>
>         <h1>Error 403 - Forbidden</h1>
>     </body> </html> Error occurred while login :  Request didn't respond 200 OK: 403 Forbidden*

Please let me know if anyone has any pointers to fix this issue.如果有人有任何指示可以解决此问题,请告诉我。

main_config.yml looks as under: main_config.yml 如下所示:

   *config:   
        http_request_timeout: 10000
        export_directory: .wso2apimcli\exported 
    environments:   APIM-DEV:
    api_manager_endpoint: https://192.168.2.124:9443
    api_import_export_endpoint: https://192.168.2.124:9443/api-import-export-2.5.0-v1
    api_list_endpoint: https://192.168.2.124:9443/api/am/publisher/v0.12/apis
    application_list_endpoint: https://192.168.2.124:9443/api/am/store/v0.13/applications
    registration_endpoint: https://192.168.2.124:9443/client-registration/v0.13/register
    admin_endpoint: https://192.168.2.124:9443/api/am/admin/v0.13
    token_endpoint: https://192.168.2.124:8243/token*

Regards, Buzzman问候, 巴斯曼

The API versions in your configuration is wrong.您配置中的 API 版本是错误的。 It should be 0.14 for APIM 2.6.0. APIM 2.6.0 应该是 0.14。

    api_list_endpoint: https://192.168.2.124:9443/api/am/publisher/v0.14/apis
    application_list_endpoint: https://192.168.2.124:9443/api/am/store/v0.14/applications
    registration_endpoint: https://192.168.2.124:9443/client-registration/v0.14/register
    admin_endpoint: https://192.168.2.124:9443/api/am/admin/v0.14

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM