From 2bde07cca68e96382055c03e98e569c492d6a0ed Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 26 Jan 2011 16:48:08 +0000 Subject: [PATCH] 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 --- eve_proxy/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eve_proxy/models.py b/eve_proxy/models.py index 7fc96e8..4ef6569 100755 --- a/eve_proxy/models.py +++ b/eve_proxy/models.py @@ -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