I need to reliably get the access token from this string:
final authString = "myApp:%23access_token=abcd1234asdf1qwerty&scope=channel_feed_read&token_type=bearer"
I've decoded it Uri.decodeComponent(authString)
but then I'm not sure how to get the auth token from the URL fragment.
Thanks