From: Shawn Parker Date: Thu, 17 Jan 2013 08:10:41 +0000 (-0800) Subject: Adding /help/configuration endpoint X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9a5c56f4da85e64dc988f2027ac30310c247a17d;p=tweepy.git Adding /help/configuration endpoint https://dev.twitter.com/docs/api/1.1/get/help/configuration --- 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):