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
In requests the data arg is for providing data in the body of a request. Since you're making a GET request these may not be sent, but they are not used by our server.
What you probably want, judging from the values you're setting, is to use params (request's docs).
In requests the data arg is for providing data in the body of a request. Since you're making a GET request these may not be sent, but they are not used by our server.
What you probably want, judging from the values you're setting, is to use params (request's docs).
—
Reply to this email directly or view it on GitHub.
Hi. Could you please tell me why the data dictionary is not respected (v variable returns default values like 25 videos per page and so on)
v = vimeo.get('/me/videos', data = { 'per_page':'1', 'query':'Untitled', 'sort':'date' , 'direction':'desc'})
thank you
Radek
The text was updated successfully, but these errors were encountered: