Hi,
Could someone explain please, what is difference between URLs mentioned in the question topic.
I am developing Android application. In my case, I needs to fetch orders for merchant. Merchant v3 doesn't maps correctly in Clover's SDK, so in Clover's API docs I've found https://www.clover.com/api_docs#!/ord... call. For test purposes I've used https://apisandbox.dev.clover.com URL to make this API call, due to Clover's REST API documentation https://docs.clover.com/build/web-app.... It works fine.
But, yesterday, I've noticed that this call became didn't work due to 401 authorization error. Investigating merchant object(see code)
App app = mAppsConnector.getApp();
Merchant merchant = app.getMerchant();
I've found that the sandbox URL is different. I've tried to call orders request from JSON representation of Merchant and it works fine. But it also work without auth token, so it a little bit confusing and looks like security issue.
Thanks.