From 06a68d41429e76fd7197d5dfdeb82a458728dde2 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 30 Dec 2017 17:54:22 +0100 Subject: [PATCH] Fix app registration Was using http instead of https. --- toot/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/api.py b/toot/api.py index 499153a..eee0473 100644 --- a/toot/api.py +++ b/toot/api.py @@ -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,