0
私たちはOAuth2プロトコルに従ってAuthserviceを持っています。 URLは次のとおりです。独自のAuthserviceでネイティブOAuth2認証に対応します
https://auth.domaon.com/web/login?client_id=client&login_redirect_uri=%2Fweb%2Fauthorize&redirect_uri=????????&response_type=code&state=somestate
モバイルアプリケーションでユーザーにログインするにはどうすればよいですか?
私はそれをリンクしようとしました。
openAuth() {
Linking.openURL('URL above');
}
componentDidMount() {
Linking.addEventListener('url', this._handleURL);
}
_handleURL(event) {
console.log(event.url);
console.log(event.url.split('#')[1].split('=')[1].split('&')[0]);
}
自分のアプリケーションにリダイレクトするためにリダイレクトURLに何を追加する必要があるのか分かりません。