Hello,
Trying to access Clover's API's without using Flask or a web ui. When making a `get` Authorize request using the code below, I am getting a html response back instead of code to then be sent to the token endpoint to get the access_token. The app is created in the NA sandbox environment. The statusCode is 200. Am I missing something in the code?
import requests import json client_id = '' client_secret = '' url = f'https://apisandbox.dev.clover.com/oauth/v2/authorize?client_id={client_id}' response = requests.get(url) statusCode = response.status_code code = response.text #returns html instead of code/url/token