gologinapp / pygologin

REST API provides programmatic access to GoLogin App. Create a new browser profile, get a list of all browser profiles, add a browser profile and running
Other
61 stars 42 forks source link

407 Proxy Authentication Required #72

Open adamelyoumi opened 8 months ago

adamelyoumi commented 8 months ago

Hello, I can successfully open a profile and drive it with Selenium, however when I close it and try to open another profile, I get the following error: ProxyError: HTTPSConnectionPool(host='time.gologin.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Unable to connect to proxy', OSError('Tunnel connection failed: 407 Proxy Authentication Required'))) Sometimes the gl.stop() won't even terminate

Code used:

gl = GoLogin({
    "token": "my_TOKEN",
    "profile_id": "my_ID"
})
gl.start()
do_stuff()
gl.stop()

gl2 = GoLogin({
    "token": "my_TOKEN",
    "profile_id": "my_ID2"
})
gl2.start()

Restarting the notebook kernel fixes it but I would rather not.