Hello.
I wrote Sender script for add Auth token but I can't debug it an what is incorrect.
My script in attach.
In this script I watch access_token and if I don't have token or it's expired i send request to kafka and got new token.
My problem it's:
when I send request for token I got
`{u'error': u'invalid_request', u'error_description': u'Missing form parameter: grant_type'}`
But as I see in logs, parameter grant_type was send
It was in logs
```
array(java.lang.String, [u'client_id', u'grant_type', u'password', u'username'])
client_id=suz-web-app&username=user_oms&grant_type=password&password=Tds1111
{u'error': u'invalid_request', u'error_description': u'Missing form parameter: grant_type'}
('Access token is', None)
```
I can't understand where is a problem and how to find it?
If I'm sending the same request through postman and proxy all working correct. But at the first time I was getting the same error. In history METHOD changed to GET from POST. And in manual requester if I returned it to POST then I have got the same error
`Missing form parameter: grant_type` when it was in the body