Reputation: 114
Good morning everyone.
Please I am new to Xamarin forms. What I want to achieve is I send a SMS text message to someone with pin code. When they click on the link in the text message, my Xamarin forms app opens and extract the pin code that was sent.
Is there a way I can extract the parameters in C# Xamarin forms?
Thank you all in advance.
Upvotes: 1
Views: 982
Reputation: 13620
You don't want launch parameters, what you are looking for is called Deep Linking.
Tapping the link will then allow you to parse the URL in the app and you can extract whatever data you want from it.
Upvotes: 4