请求中指定的回复URL与在Angular中为应用程序配置的回复URL不匹配

时间:2019-11-22 13:57:56

标签: azure azure-active-directory

我正在尝试向Azure AD注册Angular应用程序以进行登录。尽管我在代码的配置和Azure门户中都添加了重定向URL。但是我仍然收到此错误“请求中指定的回复URL与为应用程序配置的回复URL不匹配:”

下面是Azure AD应用程序配置的屏幕截图

enter image description here

下面是Angular文件的配置

 @NgModule({
   declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    NgxAdalModule.forRoot({
      tenant: `XXXXXXXXXXXXXXXXXXXXX`,
      clientId: `XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX`,
      redirectUri: `https://localhost:4200/frameRedirect.html`, 
      postLogoutRedirectUri: `https://localhost:4200/frameRedirect.html`,
      cacheLocation: 'localStorage',
    }),
  ]

1 个答案:

答案 0 :(得分:-1)

通过添加刻度线解决了我的问题,我删除了刻度线并错误地添加了单引号

例如redirectUri: <code>frameRedirect.html</code>