You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fast_arrow_auth's client.py is not passing, at the very least, the params dict to the requests.get method. However, this feature did work in the previous version of client.py as found in "fast_arrow". See below for the code in master at the time of this issue:
fast_arrow_auth/client.py:
def get(self, url, params=None):
'''
Execute HTTP GET
'''
headers = self._gen_headers(self.access_token, url)
res = requests.get(url, headers=headers)
return res.json()
fast_arrow_auth's client.py is not passing, at the very least, the
params
dict to therequests.get
method. However, this feature did work in the previous version ofclient.py
as found in "fast_arrow". See below for the code in master at the time of this issue:fast_arrow_auth/client.py
:fast_arrow\client.py
:The text was updated successfully, but these errors were encountered: