-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for requests that allow passing a model or a stream. #134
Comments
as this is an Odata concept, shouldn't it be handle at the conversion stage? what would be the resulting open api description? |
Yeah, that's why I changed the title. But the title change got lost. So I updated it again. |
Add support for the following API openapi: 3.0.0
info:
title: Sending a stream
version: 1.0.0
paths:
/sendmeastream:
post:
requestBody:
content:
application/octet-stream: {}
responses:
200:
description: ok Any unrecognized media type should be presented as a stream. |
to decipher the darrelspeak here:
The new parameter name for the mime types should be
or
|
This is needed in OData when adding stream entities to collections.
Current .net workaround https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/dev/tests/Microsoft.Graph.DotnetCore.Test/Requests/Functional/OneNoteTests.cs#L342
Add TeamsApp and TeamsAppDefinition
https://docs.microsoft.com/en-us/graph/api/teamsapp-update?view=graph-rest-1.0&tabs=http#request
Add OneNotePage
https://docs.microsoft.com/en-us/graph/api/onenote-post-pages?view=graph-rest-1.0#request
The text was updated successfully, but these errors were encountered: