Я хочу список названий созданных комнат. Я получил ошибку в методе FindingRooms
, IUserRequestBuilder
не содержит определения для FindRooms
. Как это решить?
IPublicClientApplication publicClientApplication = PublicClientApplicationBuilder
.Create("****-8d12-45ce-99dc-ee97478abc48")
.WithTenantId("****-0c15-41f2-9858-b64924a83a6c").WithRedirectUri("http://localhost")
.Build();
var password = new SecureString();
password.AppendChar('<');
password.AppendChar('T');
password.AppendChar('N');
password.AppendChar('>');
password.AppendChar('7');
UsernamePasswordProvider authProvider = new UsernamePasswordProvider(publicClientApplication, scopes);
GraphServiceClient graphClient = new GraphServiceClient(authProvider);
Microsoft.Graph.User me = graphClient.Me.Request()
.WithUsernamePassword("Tej@indica.onmicrosoft.com", password)
.GetAsync().Result;
var findRooms = await graphClient.Me
.FindRooms("Test@indica.onmicrosoft.com")
.Request()
.GetAsync();