您正在连接的代理不在 GetAuthCredentials 回调函数中的列表错误中

问题描述

我在 Chromium 实例上出现白屏,同时尝试使用回调函数来验证我的代理。这是我的代码:

def main():
check_versions()
sys.excepthook = cef.ExceptHook  # To shutdown all CEF processes on error
applicationSettings = {
    "unique_request_context_per_browser": 1,"ignore_certificate_errors": 1,"persist_session_cookies": 1,"persist_user_preferences": 1,"string_encoding": "utf-8","user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/91.0.4472.106 Safari/537.36","context_menu": {
        "enabled": True,"navigation": True,"print": True,"view_source": True,"external_browser": True,"devtools": True,}

}
commandLineSwitches = {
    "proxy-server": "host:port","force-webrtc-ip-handling-policy": "default_public_interface_only",}
cef.Initialize(applicationSettings,commandLineSwitches)
browser = cef.CreateBrowserSync(url="https://www.google.com/",window_title="Hello World!")
browser.SetClientHandler(RequestHandler("username","password"))
cef.MessageLoop()
del browser
cef.Shutdown()


class RequestHandler(object):
    def __init__(self,username,password):
        self.username = username
        self.password = password

    def GetAuthCredentials(self,browser,is_proxy,**_):
        if is_proxy:
            resp = _['callback'].Continue(self.username,self.password)
            print(_)
            print(resp)
            return True
        return False


def check_versions():
    ver = cef.GetVersion()
    print("[hello_world.py] CEF Python {ver}".format(ver=ver["version"]))
    print("[hello_world.py] Chromium {ver}".format(ver=ver["chrome_version"]))
    print("[hello_world.py] CEF {ver}".format(ver=ver["cef_version"]))
    print("[hello_world.py] Python {ver} {arch}".format(
       ver=platform.python_version(),arch=platform.architecture()[0]))
assert cef.__version__ >= "57.0","CEF Python v57.0+ required to run this"


if __name__ == '__main__':
    main()

这就是我在命令行中得到的(无限循环):

{'frame': <cefpython_py39.PyFrame object at 0x0000023E38F0B380>,'host': 'host','port': port,'realm': 'Invalid proxy credentials or missing IP Authorization.','scheme': 'basic','callback': <cefpython_py39.PyAuthCallback object at 0x0000023E36A87E30>}
None
{'frame': <cefpython_py39.PyFrame object at 0x0000023E38F0B3C0>,'realm': 'The proxy you are connecting is not in your list.','callback': <cefpython_py39.PyAuthCallback object at 0x0000023E36A87E30>}
None

找不到任何可行的解决方案。也许我遗漏了一些明显的东西,提前感谢您的帮助!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...