We are able to sucessfully login and get the token using the following code,
oauthService.clientId = 'd3263663-7950-4f48-99a9-ad10d7907245';
oauthService.loginUrl = 'https://{ADFS_SERVER}/adfs/oauth2/authorize';
oauthService.issuer = 'https://{ADFS_SERVER}/adfs';
oauthService.scope = "openid profile";
oauthService.responseType = 'id_token token';
But by using the token, we have called the userinfo API - https://{ADFS_SERVER}/adfs/userinfo
But it shows CORS error. anything to be done on ADFS Server for this issue.