File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,17 +110,6 @@ def _build_path(self):
110110 def _build_pagination_info (self , content_obj ):
111111 """Extract pagination information in the desired format."""
112112 pagination = content_obj .get ('pagination' ) or {}
113- # prepare it for signed requests turned on
114- if pagination .get ('next_url' ):
115- parsed_url = urlparse .urlparse (pagination .get ('next_url' ))
116- new_params = urlparse .parse_qs (parsed_url .query )
117- try :
118- del new_params ['sig' ]
119- del new_params ['access_token' ]
120- except KeyError :
121- pass
122- else :
123- pagination ['next_url' ] = OAuth2Request (self .api ).url_for_get (self .path , new_params )
124113 if self .pagination_format == 'next_url' :
125114 return pagination .get ('next_url' )
126115 if self .pagination_format == 'dict' :
Original file line number Diff line number Diff line change 22from setuptools import setup , find_packages
33
44setup (name = "python-instagram" ,
5- version = "1.3.2.6 " ,
5+ version = "1.3.2.7 " ,
66 description = "Instagram API client" ,
77 license = "MIT" ,
88 install_requires = ["simplejson" , "httplib2==0.9.2" ,"six" ],
You can’t perform that action at this time.
0 commit comments