summaryrefslogtreecommitdiffstats
path: root/doc/classes/HTTPClient.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #95774 from Mickeon/documentation-miscellaneous-odditiesThaddeus Crews2024-11-121-1/+5
|\ | | | | | | Fix miscellaneous oddities around the class reference
| * Fix miscellaneous oddities around the class referenceMicky2024-08-181-1/+5
| |
* | [mbedTLS] Enable TLS 1.3 supportFabio Alessandrelli2024-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | Move library initialization to module registration functions. Only set library debug threshold when verbose output is enabled. TLSv1.3 functions seems to be a bit more verbose then expected, and generate a lot of noise. Yet, some level of debugging without recompiling the engine would be nice. We should discuss this upstream.
* | Remove empty `[b]Example:[/b]` lines from the class referenceMicky2024-08-191-2/+1
|/
* [Doc] Fix casing of some C# namesA Thousand Ships2024-03-201-2/+2
|
* Update many Deprecated/Experimental descriptions for consistencyMicky2024-02-171-2/+2
|
* Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-4/+4
|
* [Web] Always return -1 as body length in HTTPClientWeb.Fabio Alessandrelli2023-07-241-0/+1
| | | | | | | | | | | | | | | Body length cannot be reliably retrieved from the web. Reading the "content-length" value will return a meaningless value when the response is compressed, as reading will return uncompressed chunks in any case, resulting in a mismatch between the detected body size and the actual size returned by repeatedly calling read_response_body_chunk. Additionally, while "content-length" is considered a safe CORS header, "content-encoding" is not, so using the "content-encoding" to decide if "content-length" is meaningful is not an option either. We simply must accept the fact that browsers are awful when it comes to networking APIs.
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Documentation: Unify deprecationsDanil Alexeev2023-06-071-4/+4
|
* Overhaul the top sections of the class reference (GUI classes)VolTer2023-05-281-1/+1
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix C# examples in documentationRaul Santos2023-01-311-4/+9
| | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely.
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-281-5/+2
| | | | | | | | | | | | | Use a TLSOptions configuration object which is created via static functions. - "TLSOptions.client": uses the standard CA and common name verification. - "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified) - "TLSOptions.server": is the standard server configuration (chain + key) This will allow us to expand the TLS configuration options to include e.g. mutual authentication without bloating the classes that uses StreamPeerTLS and PacketPeerDTLS as underlying peers.
* [Net] Rename "ssl" references to "tls" in methods and members.Fabio Alessandrelli2022-09-081-10/+10
|
* [Web] Rename JavaScript platform to Web.Fabio Alessandrelli2022-08-291-1/+1
| | | | Also rename export name from "HTML5" to "Web".
* [doc] Use "param" instead of "code" to refer to parameters (6)Andy Maloney2022-08-121-5/+5
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-17/+17
|
* Fix broken rST reference in HTTPClient documentationHugo Locurcio2022-08-071-1/+2
| | | | | | References in reStructuredText cannot be located within bold/italic text. This caused the online class reference to have the `:ref:` text written as-is.
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Adds proxy support for HTTPClientHaoyu Qiu2021-11-241-0/+18
| | | | Also fixed a potential infinite loop when connecting to server.
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* Document Android permission requirements for network access where neededHugo Locurcio2021-09-251-0/+1
|
* Add new docs warning from HTTPRequest to HTTPClientMax Hilbrunner2021-09-071-0/+1
|
* Replace HTTP links with HTTPS for sites with HTTPS versionsAaron Franke2021-08-221-2/+2
|
* Docs: Add warnings about no SSL/(D)TLS revocationMax Hilbrunner2021-08-111-0/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-54/+27
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Fix doc description of HTTPClient::requestHaoyu Qiu2021-07-111-3/+5
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* class reference proofreadingPaul Joannon2021-03-191-1/+1
|
* Unify URI encoding/decoding and add to C#Aaron Franke2021-01-281-1/+1
| | | | http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
* Docs: Port Code Examples to C# (F, G, H, I, J, K, L)HaSa10022020-11-251-6/+28
| | | | | | | | | | | | | | | | | | Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* Merge pull request #42896 from Calinou/httprequest-increase-chunk-sizeRémi Verschelde2020-11-071-1/+1
|\ | | | | Increase the default HTTPClient download chunk size to 64 KiB
| * Increase the default HTTPClient download chunk size to 64 KiBHugo Locurcio2020-11-071-1/+1
| | | | | | | | | | | | | | | | This improves download speeds at the cost of increased memory usage. This change also effects HTTPRequest automatically. See #32807 and #33862.
* | Document the supported TLS versions in HTTPRequestHugo Locurcio2020-10-171-0/+1
|/ | | | See #42857.
* Add link titles for all links in the class referenceHugo Locurcio2020-08-311-2/+2
| | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
* Document HTTPRequest not supporting request data with GET methodHugo Locurcio2020-08-031-2/+3
| | | | | | | This also improves the HTTPClient class documentation to be easier to read and more informative. This closes #40564.
* Document HTML5 CORS restrictions in HTTPClient and HTTPRequestHugo Locurcio2020-07-201-0/+1
| | | | See https://github.com/godotengine/godot/issues/40247.
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-5/+5
| | | | Handle removal of Pool*Array types and other recent changes.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* doc: Misc updates for AnimationNode* and othersRémi Verschelde2020-01-231-1/+1
| | | | | | | | | | | | | - Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`.
* Fixed HTTPClient.xml:115 and 121 variant declarationMuller-Castro2019-12-121-2/+2
|
* doc: Markup fixes for enums and constantsRémi Verschelde2019-12-061-3/+3
|
* Add download_chunk_size property to HTTPRequest.Fabio Alessandrelli2019-11-241-9/+3
| | | | | | This allows setting the `read_chunk_size` of the internal HTTPClient. This is important to reduce the allocation overhead and number of file writes when downloading large files, allowing for better download speed.
* Mention body length getter caveats in HTTPClient and HTTPRequestHugo Locurcio2019-10-221-1/+2
|
* Print errors when tab indent found in [codeblock]Yeongho Kim2019-10-011-1/+1
|
* doc: Remove null default values that can't be determinedRémi Verschelde2019-06-301-1/+1
| | | | Applying #30187.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-2/+2
| | | | Thanks to @bojidar-bg's impressive work in #29380.