Fix production URLs for token and APIs web-services

This commit is contained in:
Benjamin Dauvergne 2014-12-05 16:43:08 +01:00
parent cf68faa427
commit e0aa1c948c
1 changed files with 2 additions and 2 deletions

View File

@ -25,11 +25,11 @@ class AppSettings(object):
@property
def token_url(self):
return self._setting('TOKEN_URL', 'https://mon.service-public.fr/apis/app/oauth/token')
return self._setting('TOKEN_URL', 'https://mon.service-public.fr:2443/apis/app/oauth/token')
@property
def api_url(self):
return self._setting('API_URL', 'https://mon.service-public.fr/apis/')
return self._setting('API_URL', 'https://mon.service-public.fr:2443/apis/')
@property
def client_id(self):