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
{{ message }}
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.
hello guys, do some of you can help me? i cant even get access token, is there an easier way to get that? im trying with requests library, i dont have redirect_uri, just a simple app in my local computer, so i use a dummy redirect_uri, does this matter?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi !
I have a problem when i try:
resource=orders/search/recent?seller=$SELLER_ID
this:
https://api.mercadolibre.com/orders/search/recent?seller=$SELLER_ID&access_token=$ACCESS_TOKEN
became this:
https://api.mercadolibre.com/orders%2Fsearch%2Frecent%3Fseller%3D$SELLER_ID
and throw error 400 (backslash problem)
SOLVED editing in file: rest.py
url=url.replace("%2F",'/')
url=url.replace("%3F",'?')
url=url.replace("%3D",'=')
saludos
The text was updated successfully, but these errors were encountered: