Firebase – Why signInWithPopup() does not work with pywebview?
I am trying google sign in with firebase and trying to load the page through pywebview. from tkinter import * import webview as webview root = Tk() win_width = root.winfo_screenwidth() win_height = root.winfo_screenheight() root.geometry("%dx%d" % (win_width, win_height)) webview.create_window(title='My Window', url='http://localhost:81',confirm_close=True)…