Right, quick and straight forward instructions follow. And remember please have at least v4 of the .NET framework on your environment!
To send a HTTP request using this utility you must pass in a JSON array as the first argument.
Like so:
HttpRequester "'Url':'http://geojsonlint.com/validate','HttpMethod':'POST','PostData':'{"""type"":"""Point""","""coordinates""":[-105.01621,39.57422]}'}"
The field names are case sensitive and 'Url' and 'HttpMethod' are required fields.
The above example shows that the whole JSON object text must be enclosed in double quotes
and any double quotes inside any string values or in the JSON object itself must be escaped
by using the sequence '"""' instead of the usual '\"'. This is a windows command line requirement.
To see all fields pass either the '/?' or '--help' parameter to HttpRequester or check out the [Model Reference] if you want a more technical overview.