Forum Discussion
RandyArmstrong
Jan 10, 2024Copper Contributor
Get CallTranscript, Docs do not match current API, Cannot set file type.
This code worked until I updated to the latest library: var istrm = await m_graphClient
.Users[admin.Id]
.OnlineMeetings[meeting.Id]
.Transcripts[transcript.Id]
.Content
.GetAsync(); Now I get th...
Mike_Yeager
Copper Contributor
I'm having the same problem. Has this ever been solved?
JimScheirer
May 17, 2024Copper Contributor
Mike_Yeager Not yet. I've been trying everything I possibly can to get it working. Quite frustrating
- Mike_YeagerMay 17, 2024Copper ContributorQuite frustrating! Intellisense says it's returning a Stream, so you would think 'application/octet-stream, application/json' would be correct, but the call fails. Frustratingly, I can get it to work in PostMan, but not with the SDK. I've even tried hacky things like r.QueryParameters.SetPropertyValue("$format", "text/vtt") and other variations.
- JimScheirerMay 20, 2024Copper Contributor
Mike_Yeager I went as far as to download the solution from github and update the code to correctly allow for a format parameter. Compile it with the .net cli (not documented anywhere), which requires the out of support .net5.0 taret framework and still it doesn't work. I read another article showing a work around, but that didn't work either.