1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "libs": [],
- "about": {
- "trial": false,
- "author": {
- "name": "EMQ",
- "email": "contact@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "helpUrl": {
- "en_US": "https://github.com/lf-edge/ekuiper/blob/master/docs/en_US/rules/sources/builtin/http_push.md",
- "zh_CN": "https://github.com/lf-edge/ekuiper/blob/master/docs/zh_CN/rules/sources/builtin/http_push.md"
- },
- "description": {
- "en_US": "eKuiper provides built-in support for HTTP server to receive the stream data pushed by HTTP protocol.",
- "zh_CN": "eKuiper 提供了内置的 HTTP 服务支持,用于接收 HTTP 协议推送的流数据。"
- }
- },
- "properties": {
- "default": [{
- "name": "method",
- "default": "POST",
- "optional": true,
- "control": "text",
- "type": "string",
- "values": ["POST","PUT"],
- "hint": {
- "en_US": "The method to bind the http service",
- "zh_CN": "http 请求方法"
- },
- "label": {
- "en_US": "Method",
- "zh_CN": "请求方法"
- }
- }]
- }
- }
|