How to handle when user cancels the pop up for federated Sign In
I am developing app in React Native
When a user clicks on the button to sign in with google, a pop up appears but I don't see an option to handle the situation if user clicks on cancel on the top of pop up(in iOS). It do not trigger any event in the Hub listener
Provide code snippets (if applicable)

here is how I am using Hub.listen()
useEffect(() => {
Hub.listen('auth', ({ payload: { event, data } }) => {
switch (event) {
case 'signIn':
getUser().then(userData => ProcessUserData(userData));
case 'cognitoHostedUI':
console.log("Hosted UI")
break;
case 'signOut':
console.log("Signed Out Successfully");
break;
case 'signIn_failure':
console.log("Cancelled")
case 'cognitoHostedUI_failure':
console.log('Hostedn UI failure', data);
break;
}
});
}, []);
non of the case is triggered when user presses Cancel in the UI as marked in image attached
Did you get any solution for this?
Has anyone found a solution?
Are there any solutions available?
Hi thread, can I get some clarity on this feature request.
What would you expect from our library in this situation? I'm not sure if the pop-up window itself is part of the auth flow, only the page that it navigates to and the response that is returned.
Currently, doesn't the library just return to the app if you close/cancel this window? What would you rather have happen?
Excuse my ignorance I'm just trying to figure out use cases for this feature request so that we can better address it.
My situation is this. I am using react-native and this library along with react-native-inappbrowser-reborn to handle auth. I have a very similar Hub listener as @MuhammadAbdullah54321, handling sign-in and sign-in failure. But there is no sign-in canceled event to listen to, so I can navigate back to a component or maybe stop a spinner component when the user cancels the sign-in. I show a spinner component when the user starts the auth process and hide it when it is finished, but I have no way of stopping it if the auth gets canceled by the user. It would be nice if a sign-in-canceled event was triggered, so I can implement said features.
Understood, thank you for the clarity, I'll bring this information to the rest of the team so it can be discussed and will update this thread with any new information.
Any update on this?
There is a signIn_failure event, but it is dispatched before my page component is called. I can see it if I put the Hub listener outside the component function.
@tannerabread, any update on this?
@derekdavenport I don't get any such event on react native, amplify version 5+.
I don't know about react native, but in react I'm doing this for now:
let passed = false
Hub.listen('auth', ({ payload }) => {
if (payload.event == 'signIn_failure' && !passed) {
passed = true
setTimeout(() => Hub.dispatch('auth', payload), 1000)
}
})
This goes at the top of my component file. Then inside the component I have the normal hub listener inside useEffect. There's probably a better solution especially since this will fail if it takes longer than a second for your component to render. But I tried putting the listener as far as I could up the component tree, and it could never capture the event in time. Don't judge me too harshly for this.
Perhaps amplify should queue events until at least one listener is attached? I haven't looked at the internals, but just a thought.
@tannerabread ... This is bad, still no update on this.
Also having major problems with this in our react-native app, especially with v6.
In v5 we were able to use react-native-inappbrowser-reborn and listen when a user pressed cancel and handle it, with the upgrade and having to use @aws-amplify/rtn-web-browser I have no way of listening to a cancel event, this is quite crucial for our use-case.
Is there currently any way to listen to a cancel in the browser pop using the required @aws-amplify/rtn-web-browser package?
@dawidvdh you mentioned that you could listen to 'cancel' event from the inappbrowser.
Can you share how you did that, please?
Looking at the documentation of the inappbroswer-reborn, I can't see any event for cancellation or closing.
One way of detecting the inappbroswer-rebord cancel is by checking the resulting Promise returned by the open or openAuth functions.
You can check the type (success|cancel) to determine what to do.
I'm, currently, looking for a way to broadcast that event to the concerned screen/component.