Intégration d'applications
Android
Schéma d'URI
URI | Description |
---|
lovelolibreservice://stations | Ouvre l’affichage de la carte |
lovelolibreservice://stations/{station-id} | Ouvre l’affichage de la carte avec la station correspondant à la station-id sélectionnée |
lovelolibreservice://trips | Ouvre l’affichage de l’historique des trajets |
lovelolibreservice://profile | Ouvre l’affichage du profil |
Test des liens profonds depuis la ligne de commande sur Android :
adb shell am start -W -a android.intent.action.VIEW -d lovelolibreservice://trips
Test des liens profonds à partir du code de votre application en tant qu'intention implicite sur Android :
Intent tripsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("lovelolibreservice://trips"));
this.startActivity(tripsIntent);
iOS
Schéma d'URI
URI | Description |
---|
lovelolibreservice://stations | Ouvre l’affichage de la carte |
lovelolibreservice://stations/{station-id} | Ouvre l’affichage de la carte avec la station correspondant à la station-id sélectionnée |
lovelolibreservice://trips | Ouvre l’affichage de l’historique des trajets |
lovelolibreservice://profile | Ouvre l’affichage du profil |