When sending the POST request to https://api.aspose.cloud/connect/token with missing or just slightly wrong client_id
or client_secret
, the request does not get answered but remains stuck without an answer. At least, the request should get a 400 status code back
To reproduce, run the following curl command:
curl -X POST "https://api.aspose.cloud/connect/token" -H "Content-Type: application/x-www-form-urlencoded" -H "Accept: application/json" -d "grant_type=client_credentials&client_id=abc&client_secret=def"
This call never ends…