mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-23 07:38:58 -04:00
Curl generation query params bug (Fixes #810)
This commit is contained in:
14
packages/insomnia-httpsnippet/test/fixtures/output/python/python3/text-plain.py
vendored
Executable file
14
packages/insomnia-httpsnippet/test/fixtures/output/python/python3/text-plain.py
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
import http.client
|
||||
|
||||
conn = http.client.HTTPConnection("mockbin.com")
|
||||
|
||||
payload = "Hello World"
|
||||
|
||||
headers = { 'content-type': "text/plain" }
|
||||
|
||||
conn.request("POST", "/har", payload, headers)
|
||||
|
||||
res = conn.getresponse()
|
||||
data = res.read()
|
||||
|
||||
print(data.decode("utf-8"))
|
||||
Reference in New Issue
Block a user