我正在使用apiconnect微网关(可在github上连接)与任何现有的Web服务连接并添加一些策略,我认为我必须为现有的api创建yaml文件并将其添加到api connect的目录中。这是他们提供的样本yaml文件。
# sample_1.0.0.yaml
#
info:
version: 1.0.0
title: sample
description: sample laptop yaml
basePath: /sample
swagger: '2.0'
paths:
/echo:
get:
responses:
'200':
description: 200 OK
x-ibm-configuration:
assembly:
execute:
- javascript:
title: write a small json object
source: |
message.body = { text : 'Hello World' };
schemes:
- http
我的问题是我如何在此文件中调用现有的rest服务并定义身份验证,命中限制等策略。
这是微网关github的链接