-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Account gets locked after API login #22
Comments
I had the same issue - account blocked after one successful run of example.py. What could be the reason? I compared the headers and the only difference seems to be the 'Content-Type': 'application/xml'. |
Yup can confirm, with that additional sent header, my account is not getting blocked anymore! |
Great news - i will try it soon as well. |
I tried it but didn’t work. Just adding the content type header was not enough. Next I will try to have just the headers that https://github.com/exislow/kleinanzeigen-magic is using. Which headers did you use? |
I've removed a header after encountering this issue. It seems so that this header is deprecated: My working code looks like this: header = {
'X-EBAYK-APP': self.H_EBAYK_CLIENT_APP,
'X-ECG-USER-VERSION': self.H_EBAYK_CLIENT_VERSION,
'X-ECG-USER-AGENT': self.H_EBAYK_CLIENT_TYPE,
'Authorization': 'Basic {}'.format(app_auth),
'X-ECG-Authorization-User': user_auth,
'User-Agent': self.H_EBAYK_CLIENT_UA,
} |
@cloudmaker97 I've just adapted the js code referenced here: #14. |
Anyone knows how to prevent that? I get forced to reset my password everytime I login via API.
Using it on my local machine, so IP-address is the same.
The text was updated successfully, but these errors were encountered: