WSO2 APIM 1.10-通过REST -API添加API时,配置端点安全方案



我正在使用APIM 1.10通过REST-API添加新的API(请参阅:https://docs.wso2.com/display/am1100/apidocs/publisher/publisher/publisher/publisher/publisher/publisher/publisher/poperations#apisapi#apispost)和它的工作正常,但是:

我想添加API端点的安全性:"基本auth"。但是我不知道该怎么做,因为没有描述端点config-config。

我需要类似的东西:端点索引:true,endpointauthdigest:" basic",endpointutusername:" usn",endpointUtpassword:" pass"

有什么想法?

c ya,马蒂

以下步骤将帮助您达到要求。

  • 编辑API,然后转到"实现"选项卡。
  • 单击"显示更多选项"。
  • 为端点安全方案选择"安全"。
  • 提供凭据并保存。

使用REST API创建API时,您可以通过添加以下一部分添加安全端点详细信息。
& endpointType = secured& epusername =" admin"&eppassword =" admin"

这是一个示例命令

curl -X POST -b cookies http://localhost:9763/publisher/site/blocks/item-add/ajax/add.jag -d "action=addAPI&name=SampleAPI&context=/country&version=1.0.0&visibility=public&thumbUrl=&description=Check Country by Code&tags=country&endpointType=secured&epUsername="admin"& epPassword="admin"&tiersCollection=Gold,Bronze&http_checked=http&https_checked=https&resourceCount=0&resourceMethod-0=GET&resourceMethodAuthType-0=Application&resourceMethodThrottlingTier-0=Unlimited&uriTemplate-0=/*&default_version_checked=default_version&bizOwner=xx&bizOwnerMail=xx@ee.com&techOwner=xx&techOwnerMail=ggg@ww.com" -d'endpoint_config={"production_endpoints":{"url":"http://services.groupkt.com/country/get/iso2code/IN","config":null},"endpoint_type":"http"}'; 

相关内容

  • 没有找到相关文章

最新更新