Я использую поток кода авторизации с использованием этой библиотеки - https://github.com/openid/appauth-js
У меня есть, когда приложение запускается, эта конечная точка называется https://link.com/.well-known/openid-configuration, а затем я перенаправлен на путь сервера идентификации, передавая мои учетные данные.
Проблема в том, что я не хочу, чтобы пользователь покинул приложение, я хочу, чтобы в браузере приложения отображалось.Я не совсем уверен, как это сделать.Как мне реализовать этот плагин - https://ionicframework.com/docs/v3/native/in-app-browser/
app.component.ts
constructor(){
this.authFlow.fetchServiceConfiguration().then((resp) => {
console.log(resp, 'logging response')
this.authFlow.makeAuthorizationRequest()
});
}
auth.flow.ts
fetchServiceConfiguration() {
return AuthorizationServiceConfiguration.fetchFromIssuer(
openIdConnectUrl,
requestor
).then(response => {
// log("Fetched service configuration", response);
console.log(response, 'logging response from fetch issuer')
this.configuration = response;
}).catch((err) => {
console.log(err, 'logging error')
});
}
makeAuthorizationRequest(username?: string) {
if (!this.configuration) {
// log("Unknown service configuration");
return;
}
const extras: StringMap = { prompt: "consent", access_type: "offline" };
// if (username) {
// extras["login_hint"] = username;
// }
// create a request
const request = new AuthorizationRequest({
client_id: clientId,
redirect_uri: redirectUri,
scope: scope,
response_type: AuthorizationRequest.RESPONSE_TYPE_CODE,
state: undefined,
// extras: extras
});
// log("Making authorization request ", this.configuration, request);
this.authorizationHandler.performAuthorizationRequest(
this.configuration,
request
);
}