skip to Main Content

Azure – Error: AADSTS900144 – Missing 'grant_type' Parameter in Request Body

I am encountering an issue while working with Azure Active Directory authentication. Specifically, I am receiving the following error message: {"error":"invalid_request","error_description":"AADSTS900144: The request body must contain the following parameter: 'grant_type'.} Here is the context of my request: Endpoint: https://login.microsoftonline.com/{tenantId}/oauth2/v2.0/token Request…

VIEW QUESTION

I get a black screen when attempting to sign in via sso in my flutter app

I am calling the authorize method of the flutter_appAuth package on android. Here is what that method looks like: final result = await FlutterAppAuth().authorize( AuthorizationRequest( SSOConstants.clientId, SSOConstants.redirectUri, serviceConfiguration: AuthorizationServiceConfiguration( authorizationEndpoint: SSOConstants.authorizationEndpoint, tokenEndpoint: SSOConstants.tokenEndpoint, ), scopes: SSOConstants.scopes.split(' '), ), ); After…

VIEW QUESTION
Back To Top
Search