File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ This very experimental extension spawns an HTTP Client from within DuckDB resolv
55
66> Experimental: USE AT YOUR OWN RISK!
77
8- ### GET
8+ ### Functions
9+ - ` http_get(url) `
10+ - ` http_post(url, headers, params) `
11+
12+ #### GET
913``` sql
1014D SET autoinstall_known_extensions= 1 ; SET autoload_known_extensions= 1 ;
1115D WITH __input AS (
@@ -53,7 +57,7 @@ D WITH __input AS (
5357└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
5458```
5559
56- ### POST (WIP)
60+ #### POST (WIP)
5761``` sql
5862D SELECT
5963 http_post(
@@ -68,3 +72,7 @@ D SELECT
6872 AS data;
6973```
7074
75+
76+ #### Acknowledgements
77+
78+ Implementation inspired by [ https://github.com/duckdb/duckdb/pull/11548 ] PR by @ahuarte47
You can’t perform that action at this time.
0 commit comments