I am just trying to experiment with the API via Postman. Also, I am new to OAuth.
As I understand it, I need to issue a
https://sandbox.dev.clover.com/oauth/authorize?client_id=ABC123
Which will respond with an authorization code.
I can then use that code to make the call:
https://sandbox.dev.clover.com/oauth/token?client_id=ABC123&client_secret=MYSECRET123&code={codeUrlParam}
which returns a token I can use for calls like:
https://apisandbox.dev.clover.com/v3/merchants/MMM123/orders
But the response to the authorize call is a 50 line hmtl page, in which I cannot find anything that appears to be the code I need.
What am I misunderstanding or doing wrong?
Thanks.