webAuthenticationCallbackRoute method
Route
webAuthenticationCallbackRoute()
Route for handling callbacks during authentication with AppleIdp on foreign platforms such as Web, Android, etc, as opposed to iOS and macOS.
To be mounted as a GET handler under the URL configured in Apple's
developer portal, for example:
pod.webServer.addRoute(
appleIdp.webAuthenticationCallbackRoute(),
'/auth/apple/callback',
);
Implementation
Route webAuthenticationCallbackRoute() =>
AppleWebAuthenticationCallbackRoute(utils: utils);