You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Login problem in iframe
When the application is opened for the first time in another app with iframe, the request /token failed after to many attempts then it ends with success.The request that is failing is with grant_type: refresh_token, then the one with success is grant_type: authorization_code.
Both application are using this library.
The application that is opened with Iframe has version 12.1.0 and angular 7.3.7. OAuthStorage is session storage(the default one).
The other application is with angular 16 and is using version 16 of the library.And have this configuration in app.module
{
provide: OAuthStorage,
useFactory: (): OAuthStorage => localStorage
}
Expected behavior
When the application opened with iframe I want to login directly, since both of the apps have the same login credentials.
I would appreciate if anyone would share any idea how to solve this issue.
The text was updated successfully, but these errors were encountered:
Login problem in iframe
When the application is opened for the first time in another app with iframe, the request /token failed after to many attempts then it ends with success.The request that is failing is with grant_type: refresh_token, then the one with success is grant_type: authorization_code.
Both application are using this library.
The application that is opened with Iframe has version 12.1.0 and angular 7.3.7. OAuthStorage is session storage(the default one).
The other application is with angular 16 and is using version 16 of the library.And have this configuration in app.module
{
provide: OAuthStorage,
useFactory: (): OAuthStorage => localStorage
}
Expected behavior
When the application opened with iframe I want to login directly, since both of the apps have the same login credentials.
I would appreciate if anyone would share any idea how to solve this issue.
The text was updated successfully, but these errors were encountered: