我想以角度7+ http调用方式从Microsoft图形中调用令牌API [英] I want to call Token API from Microsoft graph in angular 7+ http call

查看:50
本文介绍了我想以角度7+ http调用方式从Microsoft图形中调用令牌API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从有角度的应用程序中,我想调用

并首先运行此演示.

成功运行此演示后,转到 profile.component.ts ,在下面添加代码:

  getAccessTokenAndCallGraphAPI(){this.authService.acquireTokenPopup({范围:['GroupMember.Read.All']}).then(result => {console.log(访问令牌:" + result.accessToken)const httpOptions = {标头:新的HttpHeaders({'Content-Type':'application/json',授权:"Bearer" + result.accessToken})}const reqBody = {" securityEnabledOnly" ;:是}this.http.post("https://graph.microsoft.com/v1.0/users/<要查询的用户>/getMemberGroups",reqBody,httpOptions).toPromise().然后(result => {console.log(result)});;})} 

在初始化页面时调用此函数:

  ngOnInit(){this.getProfile();this.getAccessTokenAndCallGraphAPI();} 

结果:

如果您还有其他问题,请告诉我.

From angular application i want to call https://login.microsoftonline.com/##tenant##/oauth2/v2.0/token api to get access token from http call and using that token i want to call https://graph.microsoft.com/v1.0/users/##UserId##​​​​​​​​​​​​​/getMemberGroups API without using any npm package of angular.

I tried using http service, but getting below error

Access to XMLHttpRequest at 'https://login.microsoftonline.com/xxxx/oauth2/v2.0/token' from origin 'https://xxx.co' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

Is there any another way to call Graph API for token and user get login user groups ?

解决方案

It is not allowed to call https://login.microsoftonline.com/<tenant>/oauth2/v2.0/token directly from a signal page application due to CORS. You should use MSAL for angular to do this. My code is based on this angular official demo.

Pls go to src/app/app.module.ts to config your Azure Ad:

and run this demo first.

After you run this demo successfully,go to profile.component.ts, add codes below:

  getAccessTokenAndCallGraphAPI(){

    this.authService.acquireTokenPopup({
      scopes: ['GroupMember.Read.All']
    }).then(result=>{
      console.log("access token: "+ result.accessToken)

      const httpOptions = {
        headers: new HttpHeaders({
          'Content-Type':  'application/json',
          Authorization: 'Bearer '+result.accessToken
        })}

      const reqBody = {
        "securityEnabledOnly": true
      }
      this.http.post("https://graph.microsoft.com/v1.0/users/<user you want to query>/getMemberGroups",reqBody,httpOptions).toPromise().then(result=>{console.log(result)});
    })
  }

Call this function when init page:

ngOnInit() {
    this.getProfile();
    this.getAccessTokenAndCallGraphAPI();
  }

result:

Let me know if you have any other questions.

这篇关于我想以角度7+ http调用方式从Microsoft图形中调用令牌API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆