I have an API in which if I am sending POST request thru body type : form-data , i am able to see the output. Here is the successful request Form-data success
But if I use the same data in raw form, it give me this error
"error": "invalid_request",
"error_description": "AADB2C90083: The request is missing required parameter: grant_type.\r\nCorrelation ID: 742e7aa2-de23-4589-8b5c-c2fadbbe1537\r\nTimestamp: 2022-01-26 21:21:29Z\r\n"
}
Here is what Header looks like when the request is successful header successful The reason i encountered is, if i unselect the Content-type under header at the success (first) scenario, it also gave me the same error.
I also saw this post Postman form-data works, but the raw equivalent doesn't
But this does not work for my solution