kotlin-multiplatform-oidc icon indicating copy to clipboard operation
kotlin-multiplatform-oidc copied to clipboard

Firefox (Android) not handling redirect

Open DatL4g opened this issue 1 year ago • 0 comments
trafficstars

Seems like the redirect isn't handled with the Firefox browser on Android. Chromium based browsers work fine.

https://github.com/DatL4g/Burning-Series/issues/83

OpenIdConnectClient {
	endpoints {
		authorizationEndpoint = "https://github.com/login/oauth/authorize"
		tokenEndpoint = "https://github.com/login/oauth/access_token"
	}

	clientId = Sekret.githubClientId(BuildKonfig.packageName)
	clientSecret = Sekret.githubClientSecret(BuildKonfig.packageName)
	scope = "read:user"
}

Callback URI:

/** burningseries://github */

addManifestPlaceholders(
	mapOf("oidcRedirectScheme" to "burningseries")
)

DatL4g avatar Jul 16 '24 21:07 DatL4g