Rest API - Authentication and Authorization
What will be the output of this simplified token exchange request in Python if the authorization code is invalid?
import requests
response = requests.post('https://auth.example.com/token', data={'code': 'invalid_code', 'grant_type': 'authorization_code'})
print(response.status_code)