How to retrieve recordings and transcripts after receiving a notification? #2833
Replies: 2 comments
-
@MikeYeager think it's more a question for the Microsoft Graph SDK |
Beta Was this translation helpful? Give feedback.
0 replies
-
@jmprieur I will try over there. I'm honestly confused how the MS Graph library ended up in this namespace. I realize it's combining token acquisition with MS Graph functionality, but the old Microsoft.Graph.Auth namespace made more sense. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was able to successfully create notification subscriptions for recording creation and transcript creation. The notification contains resource property that looks something like this (shortened for brevity):
"resource": "communications/onlineMeetings('MSo5NzZmN ... XhAdGhyZWFkLnYy')/recordings('VjIjIzE5NzZmNG ... JlNzI=')"
and the docs say I can use this to download the recording (or transcript). But it seems this is a portion of a URL. Is there some way to use GraphServiceClient to do the download or do I need to make an HTTPS call using an HTTPClient? The only way I can see to download a recording or transcript with GraphServiceClient is if I have the MeetingId and RecordingId (or TranscriptId), which are not included in the notification.
Thanks in advance, Mike
Beta Was this translation helpful? Give feedback.
All reactions