From 85d3df5e4f68fef7249d52f918b8bb1535862161 Mon Sep 17 00:00:00 2001 From: esh <76826837+3UR@users.noreply.github.com> Date: Tue, 5 Oct 2021 21:10:58 +1000 Subject: [PATCH] Update main.py --- main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 01bddc5..9af1727 100644 --- a/main.py +++ b/main.py @@ -39,14 +39,17 @@ resp = requests.post("https://spclient.wg.spotify.com/signup/public/v1/account", "referrer-policy": "strict-origin-when-cross-origin" }) +jsonr = resp.json() +errormsg = jsonr['errors'] + if "login_token" in resp.text: print(f'{Fore.LIGHTGREEN_EX}Account Created\nLogin: {Fore.LIGHTMAGENTA_EX}{username}:{Fore.LIGHTMAGENTA_EX}{password}\nResponse: {resp.text}') pse() elif "That email is already" or "Invalid Email" in resp.text: - print(f'{Fore.LIGHTRED_EX}You got an error! Please try using a different email\nResponse: {resp.text}') + print(f'{Fore.LIGHTRED_EX}You got an error! \nError: {errormsg} \nResponse: {resp.text}') pse() else: - print(f'{Fore.LIGHTRED_EX}You got an error! Try with a different username and/or disable your proxy/VPN. If that doesn\'t work, please open issue on GitHub \nResponse: {resp.text} \n {resp.status_code}') + print(f'{Fore.LIGHTRED_EX}You got an error! Try with a different username and/or disable your proxy/VPN. If that doesn\'t work, please open issue on GitHub \nError: {errormsg} \nResponse: {resp.text} \n {resp.status_code}') pse()