我正在使用C#上的新MIP SDK构建POC应用程序。要求之一是使用服务器上存储的用户名/密码。所有示例应用程序都使用oauth2登录和弹出窗口用于用户凭据输入。我认为,正确实施Iauthdelegate可能会有所帮助,但在线文档没有太大帮助。在我的发动机init方法中,我正在遵循SDK示例
var authDelegate = new AuthDelegateImplementation(appInfo);
//Initialize and instantiate the File Profile
//Create the FileProfileSettings object
var profileSettings = new FileProfileSettings(
path: "mip_data",
useInMemoryStorage: true,
authDelegate: authDelegate,
consentDelegate: new ConsentDelegateImplementation(),
applicationInfo: appInfo,
minimumLogLevel: LogLevel.Trace);
Console.WriteLine("Load the Profile async and wait for the result");
var fileProfile = Task.Run(async () => await MIP.LoadFileProfileAsync(profileSettings)).Result;
和具有以下代码
的authdelegateImplementationpublic string AcquireToken(Identity identity, string authority, string resource)
{
AuthenticationContext authContext = new AuthenticationContext(authority);
AuthenticationResult result = authContext.AcquireTokenAsync(
resource: resource,
clientId: _appInfo.ApplicationId,
redirectUri: new Uri(redirectUri),
parameters: new PlatformParameters(PromptBehavior.Auto, null),
userId: UserIdentifier.AnyUser).Result;
return result.AccessToken;
}
感谢您的帮助,c。
好吧,显然没有使用用户/密码登录的MIP SDK。但是,我能够使用其他Azure API来破解自己的方式。我将休息电话发送给Azure Rest以获取访问和刷新令牌。该请求是从Iauthdelegate的实施中发送的。您的实现方法iAuthdelegate :: aceakiretoken将发送其余呼叫,并返回访问令牌(字符串)。登录请求结构如下:
...
client.BaseAddress = new Uri(String.Format("https://login.microsoftonline.com/{0}/oauth2/token", tenantId));
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/x-www-form-urlencoded"));
...
string postBody = string.Format(
"grant_type=password&" +
"resource=https://psor.o365syncservice.com&" +
"username={0}&" +
"password={1}&" +
"client_id={2}", credentialsIdentity.Username, credentialsIdentity.Password, _appInfo.ApplicationId);
响应结构是:
public class LoginResponse
{
public string token_type { get; set; }
public string scope { get; set; }
public string expires_in { get; set; }
public string ext_expires_in { get; set; }
public string expires_on { get; set; }
public string not_before { get; set; }
public string resource { get; set; }
public string access_token { get; set; }
public string refresh_token { get; set; }
}
希望这会帮助某人走上路。
作为一般校长,MIP SDK不在乎您的登录 - 它只需要使用iauthdelegate回调知道您的身份验证令牌。
您可以并且应该使用Adal .NET来使用用户名和密码登录。您可以使用.NET样品来查找如何做