fut
fut copied to clipboard
SSLError
For 2 hours now, i have this SSLError for PC plateform:
requests.exceptions.SSLError: HTTPSConnectionPool(host='utas.mob.v4.fut.ea.com', port=443): Max retries exceeded with url: /ut/shards/v2 (Caused by SSLError(CertificateError("hostname 'utas.mob.v4.fut.ea.com' doesn't match 'utas.mobapp.fut.ea.com'",),))
Thanks to syndac on Slack, here is the fix (on fut18/urls.py:)
auth_url = rc['authURL']
to
auth_url = 'utas.mobapp.fut.ea.com'
This is a new error, but here's a temporary fix to try:
- Re-download the api from github
- Go into fut/urls.py
- On line 7, change
auth_url = rc['authURL']toauth_url = 'utas.mobapp.fut.ea.com' - Run
python setup.py install - Try your script again
- Please report in the Slack channel whether or not this worked!!
This may have just been an issue while servers were down this morning. Please report if you get this error.