Ogero Ovie
Ogero Ovie

Reputation: 114

How to launch xamarin forms app with parameters

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

Answers (1)

David Pilkington
David Pilkington

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

Related Questions