http_proxy 0.1.1

This application is designed to be used as a command from a WebAssembly function running inside the SSVM to perform native HTTP and HTTPS network operations. Please see documentation for more details.
http_proxy-0.1.1 is not a library.

Face detection model wrapper

This application is designed to be used as a command from a WebAssembly function running inside the SSVM to perform native network operations.

Examples

Simple GET

$ echo "" | target/debug/http_proxy get http://scooterlabs.com/echo

GET with header

$ echo "" | target/debug/http_proxy get http://scooterlabs.com/echo '{"X-My-Custom-Header":"foo"}'

POST with header and body

$ echo "123456789" | target/debug/http_proxy post http://scooterlabs.com/echo '{"X-My-Custom-Header":"foo"}'