mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Merge pull request #724 from davedevelopment/change-token-type-case
Change case for implict grant token_type
This commit is contained in:
		@@ -200,7 +200,7 @@ class ImplicitGrant extends AbstractAuthorizeGrant
 | 
			
		||||
                    $finalRedirectUri,
 | 
			
		||||
                    [
 | 
			
		||||
                        'access_token' => (string) $accessToken->convertToJWT($this->privateKey),
 | 
			
		||||
                        'token_type'   => 'bearer',
 | 
			
		||||
                        'token_type'   => 'Bearer',
 | 
			
		||||
                        'expires_in'   => $accessToken->getExpiryDateTime()->getTimestamp() - (new \DateTime())->getTimestamp(),
 | 
			
		||||
                        'state'        => $authorizationRequest->getState(),
 | 
			
		||||
                    ],
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user