Unable to renew tokens

Making the following POST call

`https://www.googleapis.com/oauth2/v4/token`

```

{
"client_id":"cid",
"client_secret":"secret",
"refresh_token":"some refresh token",
"grant_type":"refresh_token"
}

```

 

I keep seeing the below errorr

Error code: 400 Bad request

```

{
"error": "unsupported_grant_type",
"error_description": "Invalid grant_type: "
}
3 0 47