A CF cli plugin to provide CF context to HTTPie
- Install httpie, see instructions here
- git clone the repo to your desktop
- In the repo, run
go build
to compile a binary - run
cf install-plugin <path-to-binary>
You can now use httpie like syntax for your data payloads
e.g.
Instead of
cf curl -X POST /v2/organizations -d '{"name": "test-org"}
You can now run
cf http POST /v2/organizations name=test-org