From 54222989ba5c04678c2f32a6472213251f4f08e5 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 15 Apr 2017 13:17:04 -0700 Subject: [PATCH] Switch from API v6 -> v7 to get more useful errors Might need to tweak APIException --- disco/api/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/api/http.py b/disco/api/http.py index b8d7e03..462ad8e 100644 --- a/disco/api/http.py +++ b/disco/api/http.py @@ -176,7 +176,7 @@ class HTTPClient(LoggingClass): A simple HTTP client which wraps the requests library, adding support for Discords rate-limit headers, authorization, and request/response validation. """ - BASE_URL = 'https://discordapp.com/api/v6' + BASE_URL = 'https://discordapp.com/api/v7' MAX_RETRIES = 5 def __init__(self, token):