Fix app registration

Was using http instead of https.
This commit is contained in:
Ivan Habunek 2017-12-30 17:54:22 +01:00
parent 9787954a32
commit 06a68d4142
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def _account_action(app, user, account, action):
def create_app(domain):
url = 'http://{}/api/v1/apps'.format(domain)
url = 'https://{}/api/v1/apps'.format(domain)
data = {
'client_name': CLIENT_NAME,