msgraph-sdk-java
msgraph-sdk-java copied to clipboard
Microsoft Graph SDK for Java
Bumps [mockito-inline](https://github.com/mockito/mockito) from 4.6.1 to 4.7.0. Release notes Sourced from mockito-inline's releases. v4.7.0 Changelog generated by Shipkit Changelog Gradle Plugin 4.7.0 2022-08-13 - 33 commit(s) by 198812345678, Andy Coates, Chen...
Bumps [mockito-inline](https://github.com/mockito/mockito) from 4.6.1 to 4.7.0. Release notes Sourced from mockito-inline's releases. v4.7.0 Changelog generated by Shipkit Changelog Gradle Plugin 4.7.0 2022-08-13 - 33 commit(s) by 198812345678, Andy Coates, Chen...
Bumps [mockito-inline](https://github.com/mockito/mockito) from 4.6.1 to 4.7.0. Release notes Sourced from mockito-inline's releases. v4.7.0 Changelog generated by Shipkit Changelog Gradle Plugin 4.7.0 2022-08-13 - 33 commit(s) by 198812345678, Andy Coates, Chen...
The JVM proxy seems to be ignored when sending calls to onedrive api through LargeFileUploadTask. I start the JVM with the typical proxy settings, i.e. with -Dhttp.proxyHost=..., and -Dhttps.proxyHost and...
### Expected behavior I want to use graph sdk in a project with other dependencies (ERP, 3rd party integration, ...). This is nearly impossible due to the amount of dependencies...
We need to add the GraphServiceClient class, similar to that in the DotNet Service Library. https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/feature/5.0/src/Microsoft.Graph/GraphServiceClient.cs This class will Extend the BaseGraphServiceClient and implement the IBaseClient interface which can be...
We are using documents with hyperlinks to upload to SharePoint. The links get scrambled after uploading to sharepoint from graphAPI. This works fine if I directly upload from UI to...
### Expected behavior ```java // Example GroupCollectionPage page = graphClient.me().transitiveMemberOfAsGroup().buildRequest().get(); while (page != null) { groups.addAll(page.getCurrentPage()); page = page.getNextPage(); } ``` ### Actual behavior ```java // Example GroupCollectionPage page =...
### Expected behavior API /me/drive/items/{id}/workbook/worksheets/{id|name}/range(address='') should give range for given address. ### Actual behavior API /me/drive/items/{id}/workbook/worksheets/{id|name}/range(address='') giving full range of worksheet. ### Steps to reproduce the behavior execute API: /me/drive/items/{id}/workbook/worksheets/{id|name}/range(address='')...
Sorry, my english. Basic code ```java final BatchRequestContent batchRequestContent = new BatchRequestContent(); MessageMoveRequest request = client.me() .messages("AAA=") .move(MessageMoveParameterSet.newBuilder() .withDestinationId("deleteditems") .build() ).buildRequest(); String requestId = batchRequestContent.addBatchRequestStep(request, HttpMethod.POST); final BatchResponseContent batchResponseContent =...