microsoft-graph-sdks Questions
1
Solved
On graph sdk v4, I use option to set TimeOut to a higher value in Microsoft.Graph GraphServiceClient like bellow.
graphServiceClient.HttpProvider.OverallTimeout = TimeSpan.FromSeconds(10);
However...
Denten asked 17/5, 2024 at 2:12
1
Solved
I'm getting to grips with the Python SDK, having never used GraphQL before (but I'm familiar with the basic concept). I'm able to retrieve the odata_next_link value from responses, but I'm not sure...
Nert asked 5/9, 2023 at 22:33
1
Steps:
Create sample project from template in VS2022 (.NET 7) with authentication and Graph -> works
Update Graph Core to 3.01 and Graph to. 5.1 ->
Could not load type 'Microsoft.Graph.IAuthe...
Millinery asked 9/3, 2023 at 13:53
3
I have a web application where user logins using the approach defined in this sample.
Now I want to call Microsoft Graph for this User. I have gone through many documents and it's very confusing h...
Colston asked 12/2, 2020 at 0:48
2
I am interacting with Office graph using C# Office Graph SDK. I need to create specific request header, while I am using GraphServiceClient and RequestBuilder to create the request. How can I achie...
Vena asked 14/1, 2019 at 14:37
3
In my C# application, I am using Microsoft Graph SDK with Azure AD implementation.
Please suggest me how to search users in my organisations (global contacts) based on search parameters .
For exa...
Ericerica asked 24/10, 2018 at 13:17
3
Solved
I am using microsoft graph to send email. This email I want to send from any email that exists in the Active directory.
I already have get the permission on Mail.Send and have admin consent on Azur...
Omsk asked 19/1, 2022 at 14:0
2
Solved
I have the below code which returns all users based on a filter. The problem is it only returns 100 users but I know there are a lot more.
private List<User> GetUsersFromGraph()
{
if (_gra...
Soapbox asked 21/6, 2019 at 16:38
1
Solved
I have added a custom User Attribute named Company Name via:
Azure AD B2C > User attributes
so that this information can be returned in the identity token after successful sign in.
I want to upd...
Eyewash asked 29/1, 2023 at 7:39
4
We have a NET Core 3.1 web application where users are authenticated in Azure AD with the Microsoft.Identity.Web package. We are calling the Microsoft Graph SDK on behalf of the signed in users as ...
Putrescible asked 29/12, 2020 at 10:35
1
We use Outlook Batch API to send multiple Outlook REST requests in a single HTTP batch request. In Outlook Batch API, we make 200 requests in the same batch HTTP request and all the concurrent requ...
Carpophagous asked 16/8, 2022 at 10:9
1
Solved
I use GraphServiceClient to get messages from Outlook.
var messages = await _graphServiceClient.Me.MailFolders[folderId].Messages.Request()
.Header("Prefer", "outlook.body-content-t...
Polygynous asked 29/4, 2022 at 13:41
1
I have the following list of permissions on Azure AD:
my ASP.NET Web Core app has the following config:
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/&qu...
Stratum asked 21/4, 2022 at 22:57
2
Solved
I am using Microsoft Graph API to call some endpoints. I am using the SDK for C#.
When opening a fiddler trace, I found out that my _graphClientService is issuing an authentication to get a new tok...
Digestible asked 25/9, 2021 at 19:45
1
Solved
Microsoft graph throws the below exception when initializing the client using the access token
the access token was generated just before initializing the client & also the same token works in...
Calvinna asked 20/5, 2021 at 16:24
1
I'm syncing calendar events using the @microsoft/microsoft-graph-client npm package with the base url /me/calendarview/delta. It's been working fine until a few days ago. For some reason whenever I...
Feliciafeliciano asked 12/2, 2019 at 1:46
1
Solved
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 pos...
Palaeogene asked 4/7, 2020 at 4:46
1
I am trying to update a value on a list item (type is Hyperlink or Picture). When performing GET requests, the data return fine, but when I try to create an item or udpate it with the value I end u...
Disestablish asked 28/5, 2019 at 10:47
1
Solved
I'm currently testing the MS Graph .NET Core SDK Client in my .NET Core 3.1 app. Purpose is to provide my own local Web API user service that performs updates/changes/fetching of users from Azure B...
Anhedral asked 17/6, 2020 at 21:38
2
Solved
I am trying to update the identities collection for an existing User in an Azure AD B2C tenant. Specifically, I am attempting to add another federated identity entry for the user.
According to th...
Alga asked 5/4, 2020 at 23:53
1
Solved
Issue
I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox.
The subscription has a sch...
Budgie asked 22/3, 2019 at 2:45
2
I am trying to connect to Microsoft Share Point from my Java application. The documentation for Microsoft Graph SDK for Java is not so clear.
I am trying to initiate the Graph client, while provi...
Openhearted asked 15/4, 2019 at 13:59
2
Solved
I'm trying to perform a simple operation of reading a user profile.
After I granted relevant permissions for this operation, I was able to acquire a token by writing the following code:
static voi...
Megohm asked 27/8, 2019 at 14:24
1
Solved
I'm trying to change an Azure AD user password.
The user is already authenticated in a SPA application using the implicit flow and the adal library.
While calling:
return await graphClient.Me.Re...
Commence asked 11/6, 2019 at 15:21
1
I'm not a newbie when it comes to python (nor a professional), but this is the first time I'm trying something like this.
I would like to upload files to OneDrive using an python script. Sounds s...
Avebury asked 7/3, 2019 at 21:25
1 Next >
© 2022 - 2025 — McMap. All rights reserved.