Identity manager app in react native
This is a work in progress (and very much so). All parameters must be URI-encoded, the app will decode them.
Run:
xcrun simctl openurl booted ditto://consent/foo/bar?challenge=baz&fields=huey,dewey,louie
Run:
adb shell am start -W -a android.intent.action.VIEW -d 'ditto://consent/foo/bar?challenge=baz\&fields=huey,dewey,louie'
Note the backslash before the ampersand symbol => \&fields
. It's needed by adb
to correctly parse the query string.