Support SSL API as per devblog

CCP are switching away from HTTP to HTTPS for API access. Standard
access will be cut sometime in the future.

http://www.eveonline.com/devblog.asp?a=blog&bid=842
This commit is contained in:
2011-01-26 16:48:08 +00:00
parent f7acb04d44
commit 2bde07cca6

View File

@@ -13,7 +13,7 @@ import settings
try:
API_URL = getattr(settings, 'EVE_API_URL')
except AttributeError:
API_URL = 'http://api.eve-online.com'
API_URL = 'https://api.eve-online.com'
# Errors to rollback if we have a cached version of the document
# Errors 500-999 at the moment, this can be trimmed down as needed