Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
hiddentrue

For an application to be allowed to make calls to the API, it must send a signature with every request. The signature is a JSON string passed in the HTTP Header

For an application to be allowed to make calls to the API, it must send a signature with every request. The signature is a JSON string passed in the HTTP Header. It has the following format:

Code Block
linenumberstrue
Signature: {
	"AppKey": 12345, 
	"IssuedAt": "yyyyMMddhhmmss", 
	"Token": "hashed string” 
	}

...