No project description provided
Project description
polywrap-http-plugin
Http plugin currently supports two different methods GET
and POST
. Similar to calling axios, when defining request you need to specify a response type. Headers and query parameters may also be defined.
Response Types
TEXT
- The server will respond with text, the HTTP plugin will return the text as-is.
BINARY
- The server will respond with binary data (bytes), the HTTP plugin will encode as a base64 string and return it.
GET request
Below is sample invocation of the GET
request with custom request headers and query parameters (urlParams
).
result = client.invoke(
uri="wrap://ens/http.polywrap.eth",
method="get",
args={
"url": "http://www.example.com/api",
"request": {
"responseType": "TEXT",
"urlParams": [{"key": "query", "value": "foo"}],
"headers": [{"key": "X-Request-Header", "value": "req-foo"}],
},
},
)
POST request
Below is sample invocation of the POST
request with custom request headers and query parameters (urlParams
). It is also possible to set request body as shown below.
response = client.invoke(
uri="wrap://ens/http.polywrap.eth",
method="post",
args={
"url": "http://www.example.com/api",
"request": {
"responseType": "TEXT",
"urlParams": [{"key": "query", "value": "foo"}],
"headers": [{"key": "X-Request-Header", "value": "req-foo"}],
"body": "{data: 'test-request'}",
}
}
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file polywrap_http_plugin-0.1.0a9.tar.gz
.
File metadata
- Download URL: polywrap_http_plugin-0.1.0a9.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba24cd89f8ee0342664cbe826bdc7ce5f6862ae97c0b4ce8e7496dc172220b74 |
|
MD5 | fdac7a328be369fbac1605663c9996d6 |
|
BLAKE2b-256 | 98215ade06ba307ae567aa27b557379ddb61df654689b97f0919a7197f491957 |
Provenance
File details
Details for the file polywrap_http_plugin-0.1.0a9-py3-none-any.whl
.
File metadata
- Download URL: polywrap_http_plugin-0.1.0a9-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c837a773899fb7c1f5adb5acbc263cda44dd0a0b84cfb817414ee0a9741752aa |
|
MD5 | 88fd86840181fd565f462a8c41938900 |
|
BLAKE2b-256 | 6d9150bab30090a434b78f6439b1a935340cb1f89ea1af6b792d9eca3db90b21 |