I’m getting the same issue. When I try to login, a new tab opens and I login with my test internet identity. It then closes the tab and comes back to the tab that I started on, but then nothing: I am not authenticated and all I get is this warning log
@richards Can I ask how you solved your issue ? (my code looks very much like yours) @anon74414410 it’s coming from this file that you wrote. Basically this warning is stopping the authentication request and I’m not sure what it’s trying to prevent
I think this warning is a false negative and won’t be the real issue you’re facing. Because we have to listen for window messages, any message fired on window will trigger the callback. There are plenty of reasons there may be messages, and this could include browser extensions.
We only want to respond to messages originating from the identity provider. For example, this warning fires a lot during development from React Devtools while we are waiting for a response. It shouldn’t be breaking your app if you have correctly set up the identity provider and managed your async behavior to ensure the identity check fires after the login onSuccess call has fired