Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Generic HTTP activity

Build and start the server:

just build serve

Issue a GET request:

obelisk execution submit --follow \
  .../http.request -- \
  '"get"' \
  '"https://httpbin.org/get"' \
  '[]' \
  null

Issue a POST request:

obelisk execution submit --follow \
  .../http.request \
  -- \
  '"post"' \
  '"https://httpbin.org/post"' \
  '[["Content-Type", "application/json"]]' \
  '{"text": "{\"hello\": \"world\"}"}'