Skip to content

Latest commit

 

History

History
47 lines (42 loc) · 880 Bytes

README.md

File metadata and controls

47 lines (42 loc) · 880 Bytes

Get content from URL flogo activity

This activity allows your flogo application to get content from a URL with support for basicAuth

Installation

flogo install github.com/abasse/flogogetcontent

Schema

Inputs and Outputs:

  { "inputs":[
        {
          "name": "basicAuthUser",
          "type": "string",
          "required": false
        },
        {
          "name": "basicAuthPassword",
          "type": "string",
          "required": false
        },
        {
          "name": "URL",
          "type": "string",
          "required": true
        }
      ],
      "outputs": [
        {
            "name": "result",
            "type": "string"
        },
        {
            "name": "status",
            "type": "string"
        },
        {
            "name": "header",
            "type": "string"
        }
      ]
  }