Hi!
I have a request. I have a C# desktop application. I cannot use Graph since I cannot force customers to register any application in the Azure server.
I need to know if there is a way to know the SharePoint URL for each Team that a user has.
I know that using graph it would be easier:
I would just call
https://graph.microsoft.com/v1.0/me/joinedTeams
and then
https://graph.microsoft.com/v1.0/groups/"+szTeamId+"/sites/root
But this is a completely different scenario.
I see there is something called "MS Teams native API" that is basically what the Teams.exe local project uses...
Is there anything equivalente to Graph but using this undocumented API?
All I have that may be useful is:
+ I assume that the local Teams application may be installed
+ I have the user name and password that can be used to login to www.office.com
+ I can use CSOM API
I was curious to see if this URL map can be stored in %AppData%\Microsoft\Teams but I did not find it.
Using fiddler to inspect the HTTP traffic of Teams.exe does not provide anything useful.
Thanks