msgraph-sdk-go
msgraph-sdk-go copied to clipboard
Microsoft Graph SDK for Go
### Is your feature request related to a problem? Please describe the problem. I'm trying to create access packages with policies included, and can't find a way to modifify the...
### Describe the bug I attempted to paginate over a very large number of groups using an iterator. e.g. ``` func MakeGroupIterator(ctx context.Context, client *msgraphsdk.GraphServiceClient) (Iterator[*models.Group], error) { result, err...
Leverage the [kiota-dom-export-diff-tool](https://github.com/microsoftgraph/kiota-dom-export-diff-too) to check for breaking changes in our weekly generation as a PoC before adding to other languages. For reference: - https://github.com/microsoftgraph/msgraph-sdk-dotnet/pull/2626 - https://github.com/microsoftgraph/msgraph-sdk-java/pull/2141
Update the GO snippet for the user-findmeetingtimes method per the following externahttps://github.com/microsoftgraph/microsoft-graph-docs-contrib/pull/9431/files contribution: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/pull/9431/files
### Describe the bug The documentation for the package can't be displayed https://pkg.go.dev/github.com/microsoftgraph/[email protected]/drives ### Expected behavior See GOOD documentation ### How to reproduce visit https://pkg.go.dev/github.com/microsoftgraph/[email protected]/drives ### SDK Version _No response_...
Using the below code to upload an Logo for a given App: ``` headers := abstractions.NewRequestHeaders() headers.Add("Content-Type", "image/jpg") configuration := &applications. ItemLogoRequestBuilderPutRequestConfiguration{ Headers: headers, } appLogo, err := os.ReadFile(appLogoFile) resp,...