更新的问题,以澄清更多。
我有两台服务器:包含自定义文物的wso2greg和wso2am(api manager)。
gouvernance寄存器旨在在内部使用(intranet),其中一些功能旨在从外部公开,并通过它的其余API加入。
为了管理wso2greg API访问,我们使用了一个wso2am(api manager)服务器,我们在那里定义了一个充当wso2greg API代理的API。
在我们的实验中,我们发现了下面描述的奇怪行为:
成功直接调用wso2greg artefact rest api(确切的url是 https://localhost:9443/resource/1.0.0/artifact/_system/governance/myartifact/art1我正在使用邮递员从这里https://docs.wso2.com/display/Governance520/Resources+with+REST+API)跟踪此REST API的文档。 API按照文档中的描述做出反应。
在调用相同的REST API时,在wso2greg服务器上报告错误500,但是通过API管理器(使用发布者应用程序)。
总结如下:
作为额外信息:
请提供建议,或澄清如何在wso2greg中调试此内部错误。
此致
答案 0 :(得分:0)
我希望您不使用G-Reg + APIM功能installed version。我假设您使用单独的G-reg 5.2.0和APIM x.x.x.由于您使用第二个选项,因此无法将G-Reg REST API与APIM一起使用,因此您必须使用APIM REST API。
Description: Get details of a specific API.
URI: http://localhost:9763/publisher/site/blocks/listing/ajax/item-list.jag
URI Parameters: action=getAPI&name=xxx&version=xxx&provider=xxx
HTTP Methods: POST
Example:
curl -X POST -b cookies http://localhost:9763/publisher/site/blocks/listing/ajax/item-list.jag -d "action=getAPI&name=PhoneVerification&version=1.0.0&provider=admin"
请按照this link查看所有api用法。
答案 1 :(得分:0)
感谢@thusharaK提供帮助。
解决方案是添加消息中介策略,该策略强制输出json标头。
现在我从API管理器得到了正确的答案(实际上,我在测试控制台中得到了二进制响应,并且在邮递员中得到了json响应)。