microsoft-graph-sdks

Microsoft Graph Error - Resource not found for the segment 'root:' when uploading file to OneDrive

ぃ、小莉子 提交于 2020-07-31 05:27:15
问题 When working on this tutorial on Uploading File to OneDrive from Microsoft Graph OneDrive team, I'm getting the following error at the last line of the code shown below: Remarks : There are some posts online with a related issue, (such as: This, or this, or this or this or this). But they all seem to have a different context or do not have a response. Question : What could be the issue, and how can we resolve it Resource not found for the segment 'root:' Relevant Code : GraphServiceClient

Microsoft Graph Error - Resource not found for the segment 'root:' when uploading file to OneDrive

自闭症网瘾萝莉.ら 提交于 2020-07-31 05:24:33
问题 When working on this tutorial on Uploading File to OneDrive from Microsoft Graph OneDrive team, I'm getting the following error at the last line of the code shown below: Remarks : There are some posts online with a related issue, (such as: This, or this, or this or this or this). But they all seem to have a different context or do not have a response. Question : What could be the issue, and how can we resolve it Resource not found for the segment 'root:' Relevant Code : GraphServiceClient

How to handle deleted Recurring master events using Microsoft delta queries

 ̄綄美尐妖づ 提交于 2020-07-23 06:41:32
问题 I am trying to move from EWS to Microsoft graph and facing problem while implementing syncFolderItems flow. I need to track and update changes of all created, modified and deleted events using Microsoft graph apis. I went through Microsoft documentation and found they have delta Api which returns only the changes which occurred from last sync. But I am not sure how recurring events should be handled using delta queries api. Please help. Thanks in advance. 回答1: The current behavior is that

How to handle deleted Recurring master events using Microsoft delta queries

烂漫一生 提交于 2020-07-23 06:40:32
问题 I am trying to move from EWS to Microsoft graph and facing problem while implementing syncFolderItems flow. I need to track and update changes of all created, modified and deleted events using Microsoft graph apis. I went through Microsoft documentation and found they have delta Api which returns only the changes which occurred from last sync. But I am not sure how recurring events should be handled using delta queries api. Please help. Thanks in advance. 回答1: The current behavior is that

MS Graph - LINQ query returning incorrect results

梦想的初衷 提交于 2020-07-22 05:51:08
问题 Question : Following is returning one incorrect value. What I may be missing and how can it be corrected? The issue seems to be purely related to use of LINQ and not MS Graph. Remark : Although this is a simpler case with only two types of values (Azure AD and MS Account), in real scenarios there will be more than just two cases. Hence, we can't just use a simple ternary operator (e.g. condition ? consequent : alternative ) for a simple case - instead, it has to be embedded with multiple

Microsoft Graph ChatMessage Namespace Missing in C#

帅比萌擦擦* 提交于 2020-07-09 06:09:10
问题 I'm following the Microsoft Graph tutorial to create and send a chat message to a Microsoft Teams channel from C#. However, I'm getting an error when following the first example when trying to create a ChatMessage object. ( var chatMessage = new ChatMessage... ) The error is: The type or namespace name 'ChatMessage' could not be found (are you missing a using directive or assembly reference?) I've added the following references to my project already but none of them seem to contain the

Microsoft Graph ChatMessage Namespace Missing in C#

青春壹個敷衍的年華 提交于 2020-07-09 06:05:09
问题 I'm following the Microsoft Graph tutorial to create and send a chat message to a Microsoft Teams channel from C#. However, I'm getting an error when following the first example when trying to create a ChatMessage object. ( var chatMessage = new ChatMessage... ) The error is: The type or namespace name 'ChatMessage' could not be found (are you missing a using directive or assembly reference?) I've added the following references to my project already but none of them seem to contain the

How to serialize and Deserialize IGraphServiceClient client object?

风流意气都作罢 提交于 2020-07-05 12:07:52
问题 We are working on a project which uses Microsoft Graph SDK to implement Excel/OneDrive related functionalities. We have a use-case where we need to serialize and deserialize the IGraphServiceClient client reference/object. We tried to deserialize the object but we're getting a NotSerializableException exception. We were exploring SDK and find ISerializer.java class but unable to use it in serialization/Deserialization. Could you please help us how can we get over this issue?

Getting Teams Calls returns Application not registered in our store

我怕爱的太早我们不能终老 提交于 2020-07-05 05:09:12
问题 I'm struggling with Microsft Graph. I want to fetch Teams Calls from the graph API to throw them against our ticket software. Sounds easy at first. And I think it is but I don't get why it won't work. Edit: Just a heads up. I ended up using the Microsoft Graph subscription model. To be clear, I don't want to create a teams app, I just want to fetch Teams Calls/Meetings. This is my code (removed ID's for obvious reasons): class Program { // (Company IDs) static string tenantId = "xxxxxxxx-xxxx

Understanding Microsoft graph /getSchedule Api functionality

倖福魔咒の 提交于 2020-06-29 03:49:11
问题 I am trying to use graph /getSchedule api to check for meeting conflict. However I'm not quite about functionality and usage of request input field "availabilityViewInterval". My basic requirement is to pass a start and end dateTime and see if the resource is available(free/busy). Although I am able to get that in /getSchedule Api but not sure on some of the fields in request and response. "availabilityViewInterval" : This is a request field and is stated in document as optional but while