我想使用 CrmServiceClient 和 Office365 authType 连接到 crm
string connectionString = "Url=crm_url; Username=crm_user; Password=crm_user_password; AuthType=Office365;";
var crmServiceClient = new CrmServiceClient(connectionString);
如果我使用禁用 MFA 的帐户,将建立连接。
如果我使用启用了 MFA 的帐户,则会出现错误:“无法登录到 Dynamics CRM OrganizationWebProxyClient is nullOrganizationWebProxyClient is nullObject reference not set to an instance of an object”。
我知道使用 OAuth 会更好,因为它完全支持 MFA。但我不知道在过去 2 周内它停止工作有什么变化。用户一直启用 MFA,自查看几个月以来没有人更改任何内容。你知道为什么它现在停止工作了吗?