From 9a5c56f4da85e64dc988f2027ac30310c247a17d Mon Sep 17 00:00:00 2001 From: Shawn Parker Date: Thu, 17 Jan 2013 00:10:41 -0800 Subject: [PATCH] Adding /help/configuration endpoint https://dev.twitter.com/docs/api/1.1/get/help/configuration --- tweepy/api.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tweepy/api.py b/tweepy/api.py index 060a879..9c83a54 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -759,6 +759,13 @@ class API(object): allowed_param = ['lat', 'long', 'name', 'contained_within'] ) + """help/configuration""" + configuration = bind_api( + path = '/help/configuration.json', + payload_type = 'json', + require_auth = True, + ) + """ Internal use only """ @staticmethod def _pack_image(filename, max_size): -- 2.25.1