-
Notifications
You must be signed in to change notification settings - Fork 252
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
Get callTranscript Content does not work in SDK #2505
Comments
Thanks for raising this @MikeYeager Are you able to share a sample URL that works via postman to help compare with what path the SDK is calling? Could you also share a link to the docs where the code snippet is from? |
@andrueastman Sorry for the delay, was sidelined with BUILD. The docs can be found here: https://learn.microsoft.com/en-us/graph/api/calltranscript-get?view=graph-rest-1.0&tabs=csharp Check out Examples 2 & 3 (choose C#). In example 3 it mentions you can set requestConfiguration.QueryParameters.Format = "text/vtt", but no such parameter exists. I even tried setting a value for a QueryParameter with SetValue, but that doesn't work either. I exported the PostMan call as a C# snippet. Notice it's sending a query param to return text/vtt.
|
This is caused by the metadata missing the $format parameter. Filed microsoftgraph/msgraph-metadata#632 |
Describe the bug
I am trying to download transcripts and recordings using Microsoft.Identity.Web.GraphServiceClient 2.18.1. The docs ?? say this:
Which should return a Task<Stream> according to Intellisense. When I run this code, I get the following exception,
Invalid format 'application/octet-stream, application/json' specified.
with a 400 response code. If I remove .Content. I do get the transcript information.Expected behavior
I would expect a stream to be returned with a 200 response. application/octet-stream would seem to be the correct content type for that.
How to reproduce
n/a
SDK Version
2.18.1
Latest version known to work for scenario above?
No response
Known Workarounds
I can download the transcript via postman if I specify the $format=text/vtt query parameter. Can't find a work-around within the SDK.
Debug output
Click to expand log
```Invalid format 'application/octet-stream, application/json' specified. Exception Attributes:
Message: Invalid format 'application/octet-stream, application/json' specified.
Exception type: Microsoft.Graph.Models.ODataErrors.ODataError
Source: Microsoft.Kiota.Http.HttpClientLibrary
Thrown by code in method: MoveNext
Thrown by code in class: d__28
Stack Trace:
Method: Microsoft.Kiota.Http.HttpClientLibrary.HttpClientRequestAdapter.ThrowIfFailedResponse(HttpResponseMessage response, Dictionary
2 errorMapping, Activity activityForAttributes, CancellationToken cancellationToken) Method: Microsoft.Kiota.Http.HttpClientLibrary.HttpClientRequestAdapter.SendPrimitiveAsync[ModelType](RequestInformation requestInfo, Dictionary
2 errorMapping, CancellationToken cancellationToken) Method: Microsoft.Kiota.Http.HttpClientLibrary.HttpClientRequestAdapter.SendPrimitiveAsync[ModelType](RequestInformation requestInfo, Dictionary2 errorMapping, CancellationToken cancellationToken) Method: Microsoft.Graph.Users.Item.OnlineMeetings.Item.Transcripts.Item.Content.ContentRequestBuilder.GetAsync(Action
1 requestConfiguration, CancellationToken cancellationToken) Line #: 500 -- Method: CleverTeamsIntegration.CleverTeamsIntegration.TestGetTranscriptInfo(HttpRequestData req) -- Source File: C:\Repos\CleverProducts\Clever.Video.TeamsIntegration\CleverTeamsIntegration\CleverTeamsIntegration.csThe text was updated successfully, but these errors were encountered: