@Ramashankar Agrahari Are you trying to build a recording bot that can join meetings authenticated?
Does Teams provide any remote authentication mechnism to join an online meeting in browser
Hi,
I am looking for some approaches to authenticate a user on remote pc for joining Teams meeting.
Scenario is like:
I have a Windows-10 pc (say pc-1) in which I login using my Azure AD account. If I open any Teams meeting url in browser on my this pc, it takes me to join the meeting directly without asking my Teams credentials as I have already used that for login to pc.
I have another Windows-10 pc (say pc-2 ) which is a standalone pc logged-in using a local user account, acts like a server machine and it doesn't have any keyboard/mouse attached. I get the same meeting url opened in browser on that pc-2 (through my modules running there). It asks me for Teams user credential but I am unable to do that manually.
So what I am looking for is:
- Is there any way I can share my credentials of pc-1 with pc-2 programmatically (without entering it manually) so that I can join same meeting from pc-2? something in line of: I fetch any token/cache/other info somewhere from pc-1 and put it somewhere on pc-2 so that when meeting url is hit on pc-2 it recognizes and authenticates the user automatically (though it sounds like some type security breach too).
- I currently started exploring a link of 'joining team meeting using QR code' but not sure if it will provide same result.
[https://learn.microsoft.com/en-us/samples/officedev/microsoft-teams-samples/officedev-microsoft-teams-samples-bot-join-team-using-qr-code-csharp/]
It seems like instead of joining through url, it can generate some QR code, which can be scanned by any custom app (or Microsoft Authenticator App) for authentication AND/OR joining the meeting directly. - How does Teams auto authentication works when any meeting url is opened in browser? It seems it does lot of url redirection for data/cache fetching.
Any help/pointers to some link is highly appreciated.
Thanks.