Deep Linking Widows
help in deep linking
I created a URI Schema
<Extensions>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="daily-co">
<uap:DisplayName>demyia</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
</Extensions>
where daily-co is part of the uri, becoue I am using dialy api, for example https://demy-ia.daily.co/programming
I made this in the maiuProgram
#if WINDOWS
events.AddWindows(windows => windows
.OnLaunched((window, args) => {
var activatedEventArgs = Microsoft.Windows.AppLifecycle.AppInstance.GetCurrent().GetActivatedEventArgs();
}));
#endif
but I don't see anything my uri or anything
where is my URI
I searched here
https://stackoverflow.com/questions/72606737/how-to-open-winui-maui-through-uri-activation/73217714#73217714
I created a URI Schema
<Extensions>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="daily-co">
<uap:DisplayName>demyia</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
</Extensions>
where daily-co is part of the uri, becoue I am using dialy api, for example https://demy-ia.daily.co/programming
I made this in the maiuProgram
#if WINDOWS
events.AddWindows(windows => windows
.OnLaunched((window, args) => {
var activatedEventArgs = Microsoft.Windows.AppLifecycle.AppInstance.GetCurrent().GetActivatedEventArgs();
}));
#endif
but I don't see anything my uri or anything
where is my URI
I searched here
https://stackoverflow.com/questions/72606737/how-to-open-winui-maui-through-uri-activation/73217714#73217714

Stack Overflow
I've created a Maui windows application. I'm looking to activate the application through a URI and pass query parameters to the app.
I've added the windows protocol for calling the app via uri in the
I've added the windows protocol for calling the app via uri in the