我已经使用静态IP地址将WSO2 API Manager托管到我的虚拟机中。
我可以通过输入以下地址打开我的Carbon,Publisher和Store页面:
https://my.ip.address:9443/publisher
https://my.ip.address:9443/store
https://my.ip.address:9443/carbon
当我在我的发布商页面中添加我的API时,它会在172.x.x.x.x
地址中创建一个仅供内部使用的端点。
因此,为了能够访问我的端点,我已将\wso2\wso2am-2.1.0\repository\conf\api-manager.xml
中的这些行写入APIGateway
:
<APIGateway>
<Environments>
<Environment type="hybrid" api-console="true">
<Name>Production and Sandbox</Name>
<Description>This is a hybrid gateway that handles both production and sandbox token traffic.</Description>
<!-- Server URL of the API gateway -->
<ServerURL>https://localhost:${mgt.transport.https.port}${carbon.context}services/</ServerURL>
<!-- Admin username for the API gateway. -->
<Username>${admin.username}</Username>
<!-- Admin password for the API gateway.-->
<Password>${admin.password}</Password>
<!-- Endpoint URLs for the APIs hosted in this API gateway.-->
<GatewayEndpoint>http://${carbon.local.ip}:${http.nio.port},https://${carbon.local.ip}:${https.nio.port},http//my.ip.address:${http.nio.port},https://my.ip.address:${https.nio.port}</GatewayEndpoint>
</Environment>
</Environments>
</APIGateway>
现在,当我发布我的API时,生产和沙盒网址是:
http://my.ip.address:8280/path/to/my/api
https://my.ip.address:8243/path/to/my/api
但是,当我尝试向我的API网址发出请求时,我会收到超时错误。
为什么会这样?
答案 0 :(得分:0)
主要问题是我的系统管理员没有为本地网络之外的用户打开8280
和8243
端口。