gpt4 book ai didi

c# - 获取日历事件时如何解决 "Microsoft.graph.serviceexception code generalexceptionmessage an error occurred sending the request"?

转载 作者:行者123 更新时间:2023-12-03 17:12:28 27 4
gpt4 key购买 nike

我已经使用用户密码身份验证提供程序创建了一个身份验证提供程序,但是并尝试在具有机器人框架 4 的 C# 机器人代码中检索日历事件

IPublicClientApplication publicClientApplication =
PublicClientApplicationBuilder
.Create("jhnjchdjvd")
.WithTenantId("sdfdf")
.Build();

var s = new SecureString();
s.AppendChar('<');
s.AppendChar('T');
s.AppendChar('N');
s.AppendChar('>');
s.AppendChar('7');

UsernamePasswordProvider authProvider = new UsernamePasswordProvider(publicClientApplication, scopes);

GraphServiceClient graphClient = new GraphServiceClient(authProvider);

Microsoft.Graph.User me = await graphClient.Me.Request()
.WithUsernamePassword("kjkhv@indica.onmicrosoft.com",
s).GetAsync();

var events = await graphClient.Me.Events
.Request()
.Header("Prefer", "outlook.timezone=\"Pacific Standard Time\"")
.Select(e => new
{
e.Subject,
e.Body,
e.BodyPreview,
e.Organizer,
e.Attendees,
e.Start,
e.End,
e.Location
})
.GetAsync();
上面的代码抛出异常,这是

Microsoft.graph.serviceexception code generalexceptionmessage an erroroccurred sending the request


我该如何解决这个错误?

最佳答案

  • 确保您使用最新的 NuGet 包并尝试一下。为了获得最新的,请尝试以下操作:

  • "Install-Package Microsoft.Identity.Client -Pre".This commandinstalls latest MSAL library.


  • 快点我 tested the sample .我知道它不是 BOT 框架,而是它的 MSAL 和调用图,因此相同的逻辑适用并适用于原则。它对我有用。
  • 我也用 BOT Framework and MSAL; here are the steps 测试过我遵循的。您可能也想检查一下。
  • 关于c# - 获取日历事件时如何解决 "Microsoft.graph.serviceexception code generalexceptionmessage an error occurred sending the request"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60181663/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com