如何将移动应用程序连接到 AD B2C

How to connect with mobile application to AD B2C(如何将移动应用程序连接到 AD B2C)
本文介绍了如何将移动应用程序连接到 AD B2C的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在 .net core (3.1) 中有一个 web api.

I' ve a web api in .net core (3.1).

这个网站被 3 个应用程序使用:

This web is used by 3 applications :

  • 网络应用程序
  • iOS 应用
  • 安卓应用

对于 Web 应用程序,我们使用默认登录页面.所以登录后会有一个重定向到客户端应用程序.

For the Web Application we use the default login page. so after login there is a redirect to the client application.

对于 Ios 和 Android 应用,我们无法找到可用于获取令牌的代码.

For Ios and Android Apps we are not able to find a code that worked in order to get the token.

谢谢.

推荐答案

关于如何获取 azure ad token 调用 api 的示例有很多.请看这里:https://docs.microsoft.com/en-us/azure/active-directory-b2c/code-samples

there are various samples of how to get azure ad tokens to call apis. please take a look here: https://docs.microsoft.com/en-us/azure/active-directory-b2c/code-samples

特别注意前2个:ios-swift-native-msal和android-native-msal他们基本上就是这样做的,使用 MSAL 库来获取令牌并允许您使用它来调用 Web api.

pay particular attention to the first 2: ios-swift-native-msal and android-native-msal they basically do exactly that, with the MSAL library to get tokens and allow you to use it to call web apis.

这篇关于如何将移动应用程序连接到 AD B2C的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to MOQ an Indexed property(如何最小起订量索引属性)
Mocking generic methods in Moq without specifying T(在 Moq 中模拟泛型方法而不指定 T)
How Moles Isolation framework is implemented?(Moles Isolation 框架是如何实现的?)
Difference between Dependency Injection and Mocking Framework (Ninject vs RhinoMocks or Moq)(依赖注入和模拟框架之间的区别(Ninject vs RhinoMocks 或 Moq))
How to mock Controller.User using moq(如何使用 moq 模拟 Controller.User)
How do I mock a class without an interface?(如何模拟没有接口的类?)