tyrrrz/Send HTTP Request
Make an HTTP request to a URL
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| url | URL to send the request to | yes | — |
| method | HTTP method to use | — | GET |
| headers | Headers to send with the request (one per line) | — | — |
| body | Body to send with the request | — | — |
| retry-count | Number of times to retry on unsuccessful requests | — | 0 |
| retry-delay | Delay between retries in milliseconds | — | 1000 |
| fail-on-error | Whether to fail the step if the request was unsuccessful | — | true |
Outputs
| name | description |
|---|---|
| status | Status code of the response |
| success | Whether the response status code indicates success |
| headers | Headers returned by the response (formatted as a JSON object) |
| body | Body of the response |