Our apps for iOS and Android supports deep linking to select parts of the app. This way, you may open the city bike app directly from your own app.
URI | Description |
---|---|
bergenbysykkel://stations | Opens the map view |
bergenbysykkel://stations/{station-id} | Opens the map view with the station matching the station-id selected |
bergenbysykkel://trips | Opens the trip history view |
bergenbysykkel://profile | Opens the profile view |
adb shell am start -W -a android.intent.action.VIEW -d bergenbysykkel://trips
Intent tripsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("bergenbysykkel://trips"));
this.startActivity(tripsIntent);
URI | Description |
---|---|
bergenbysykkel://stations | Opens the map view |
bergenbysykkel://stations/{station-id} | Opens the map view with the station matching the station-id selected |
bergenbysykkel://trips | Opens the trip history view |
bergenbysykkel://profile | Opens the profile view |