Speedclimbing Stopwatch result transfer link
This site is a helper to transfer the results of the scstw to result management apps by using Google app links or Apple universal links.
After a race is done, the ScStw control interface displays a link like https://scstw-rtl.itsblue.de/de.itsblue.scstw-rtl/v1/result?time=4999&reaction-time=117. When the user clicks the link and has a compatible app installed, the app will open and receive the data.
How to make a compatible app
Android
You can follow the official guide on how to use app links.Make sure to include these thigs in your intent-filter manifest entry:
android:scheme:httpandhttpsandroid:host:scstw-rtl.itsblue.deandroid:pathPattern:/de.itsblue.scstw-rtl/v1/.* (this is important to make sure your app does not try to handle potentially incompatible changes)
<!-- Make sure you explicitly set android:autoVerify to "true". -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<!-- Include the right domain -->
<data android:host="scstw-rtl.itsblue.de" />
<!-- IMPORTANT: Include the version number in the path! -->
<data android:pathPattern="/de.itsblue.scstw-rtl/v1/.*" />
</intent-filter>