Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
HttpRequest Class
An HTTP request object.
Constructor
HttpRequest(method: str, url: str, *, headers: Mapping[str, str] | None = None, params: Mapping[str, str] | None = None, route_params: Mapping[str, str] | None = None, body: bytes)
Parameters
| Name | Description |
|---|---|
|
method
Required
|
HTTP request method name. |
|
url
Required
|
HTTP URL. |
|
headers
Required
|
An optional mapping containing HTTP request headers. |
|
params
Required
|
An optional mapping containing HTTP request params. |
|
route_params
Required
|
An optional mapping containing HTTP request route params. |
|
body
Required
|
HTTP request body. |
Keyword-Only Parameters
| Name | Description |
|---|---|
|
headers
|
Default value: None
|
|
params
|
Default value: None
|
|
route_params
|
Default value: None
|
|
body
Required
|
Methods
| get_body |
| get_json |
get_body
get_body() -> bytes
get_json
get_json() -> Any
Attributes
files
form
headers
method
params
route_params
url
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python
Feedback
Was this page helpful?
