Questions tagged [microsoft-graph-sdks]

Microsoft Graph SDKs refer to a collection of language-specific SDKs for Microsoft Graph. This tag should generally be used in conjunction with the [microsoft-graph] tag.

The current list of available SDKs for Microsoft Graph can be found at https://developer.microsoft.com/en-us/graph/gallery/?filterBy=SDKs

1156 questions
0
votes
1 answer

Microsoft Graph /users subscription no longer works

We're using Microsoft.Graph to read /users and get notifications. This is the working example on how we subscribe: var result = await _client.Subscriptions.Request().AddAsync(new Subscription() { ChangeType = "updated,deleted", …
0
votes
0 answers

Microsoft Graph API - Get message from shared mailbox - Forbidden Error

I have a daemon service which acquires access_token using username/password of a user (user1@domain.com) [ Using Microsoft.Identity.Client.PublicClientApplication & then using AcquireTokenByUsernamePasswordAsync to get the access token). Azure app…
Karan
  • 65
  • 5
0
votes
0 answers

Microsoft graph api - Fetching events returns funky subject

I suspect that there might be a bug in the graph Api. I have a Powershellscript that fetches events for a series of meetingrooms. the URL i use: "https://graph.microsoft.com/v1.0/users/roomuserid/Events? $Filter=start/datetime ge '2018-10-29'" the…
0
votes
1 answer

List-Unsubscribe header in Microsoft Graph Api is not working

I have added unsubscribe header while sending email via Microsoft Graph API but still it is not adding List-Unsubscriber header in the email. Dim HeaderOptions = New List(Of [Option]) From { New HeaderOption("List-Unsubscribe",…
0
votes
1 answer

Microsoft Graph support for creating document sets and managed metadata term columns

I recently started testing the Microsoft Graph APIs, I've been able to successfully upload and delete documents in SharePoint Online document libraries through it. I have not seen anything documentation around this and would guess it's not…
user1783490
  • 273
  • 1
  • 8
  • 23
0
votes
1 answer

how do you determine whether a driveitem can be versioned

Starting to work with the graph API (specifically the .Net SDK), and while the "Drive" object indicates whether the root is "personal", "business" or a SP library, I don't see anywhere to find the explicit capabilities of a drive or driveitem. …
AWeber
  • 381
  • 1
  • 3
  • 14
0
votes
1 answer

the user's timezone is null when grabbing it in the mailboxsettings using the Graph SDK

I'm trying to call Graph SDK to access the user's timezone. In order to do that i created a native app that has two scopes (Read and readWrite user's mailboxsettings). However as you can see in the image the timezone prop is null, despite the fact…
0
votes
3 answers

How to retrieve the user's profile and the user's calendars using the Microsoft Graph API?

I can retrieve a user's profile using Microsoft Graph API and as well as their calendars in my web application. Sometimes, I have to get them in one request; such as the network is too slow or some reason. However, there is not a property about the…
AMars.K
  • 15
  • 3
0
votes
0 answers

GET Events not returning all attendees

Using the .NET SDK to query Graph api for events. In cases where there are multiple attendees, the result data only includes the organizer and a maximum of 2 additional attendees in the Attendees collection. var request =…
Derek
  • 132
  • 4
0
votes
1 answer

Timeout and Retry-Backoff mechanisms in msgraph-sdk-java

I have recently started using msgraph-sdk for java for creating a syncing service for oneDrive users, files etc. I want to make few calls via batching like getting permissions info for multiple files. Does the sdk support batched calls. If yes, can…
0
votes
1 answer

ADAL Proxy Error while connecting through Rake Task

I am following this website for connecting to Microsoft Graph to get the access token using ADAL gem. I have written a Rake task to perform this. This works fine in the open network but fails in the Corporate Network. I have set the proxy…
0
votes
0 answers

Email Reply Notifications in Office 365 API

I'm hooking a custom CRM app into office 365 emails using the graph sdk and web hooks (or notifications as the doc calls it) to listen to the inbox so that when a user sends or receives a message from outlook (or any client) the CRM system saves the…
Ben
  • 1,032
  • 8
  • 18
0
votes
1 answer

PATCH user request with birthday or hireDate returns 500 error

I am unable to update the birthday and hireDate properties for users in my directory. The following request returns a 500 Internal Server Error PATCH https://graph.microsoft.com/beta/users/[removed] HTTP/1.1 SdkVersion: Graph-dotnet-1.10.0 …
Tre'Von McKay
  • 35
  • 2
  • 6
0
votes
1 answer

Single-Value Extended Property is null - MS Graph SDK

I am looking to save hidden data to a Outlook 365 event. This is how I am currently doing it. SingleValueLegacyExtendedProperty singleEP1 = new SingleValueLegacyExtendedProperty { Id = "String " + "{" + Guid.NewGuid() + "} " + "Name " +…
0
votes
1 answer

Graph Web application authentication single sign on

I saw some information about single sign on in combination with the azure ad. Does that mean I can create a web application that's using the graph api (Calendar , Contact) and using the single sign on for a pleasant user experience. I'm aware of the…