Forum Discussion
How To: Get embed token using Get/Post only
adamwallace3 I'm sending Post request with like in your first step. But getting this error :
"error": "invalid_request",
"error_description": "AADSTS90014: The request body must contain the following parameter: 'grant_type'.\r\
My App type is web/api in azure . Is there a solution to fix this grant_type issue?
- ezekielvp8 years agoFrequent Visitor
d_u_a wrote:adamwallace3 I'm sending Post request with like in your first step. But getting this error :
"error": "invalid_request",
"error_description": "AADSTS90014: The request body must contain the following parameter: 'grant_type'.\r\
My App type is web/api in azure . Is there a solution to fix this grant_type issue?I used to have that error message. I tried using postman and go to the body and make sure you chose the form-data and feed the key/value needed for the request and all should work
- Anonymous7 years agoNot applicable
You get this "invalid_request" error probably because you simply copy/pasted data: {} into body raw. I got the same error when I did it, but got it work by copy only the key/value pairs inside the curely braces and paste it into form-data using Bulk Edit (of course enter your credentials).