★ wanayoo — archive 1999 https://github.com/python273/vk_api/issues/382Nouvelle recherche | Portail wanayoo
Skip to content
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

Проблемы с авторизацией #382

Open
FamiliarStrang3r opened this issue Sep 24, 2020 · 0 comments
Open

Проблемы с авторизацией #382

FamiliarStrang3r opened this issue Sep 24, 2020 · 0 comments

Comments

@FamiliarStrang3r
Copy link

@FamiliarStrang3r FamiliarStrang3r commented Sep 24, 2020

Житель Украины, для авторизации использовал прокси. В случае входа через номер+пароль (даже верного пароля) получаю исключение vk_api.exceptions.BadPassword: Bad password. Пробовал вход через токен - vk_api.exceptions.ApiError: [29] Rate limit reached
Есть шансы на успех?

Окружение

vk_api: 11.9.0

API: ? не использую ?

Тестировал прокси на работоспособность вот так

link = "https://api.vk.com/method/users.get?user_id=210700286&v=5.52"
response = requests.get(link, proxies = proxies)
jsonResponce = response.json()
print(jsonResponce)

При указании верных данных все равно vk_api.exceptions.BadPassword: Bad password

proxies = {
    'https': 'https://51.161.116.223:3128'
}

s = requests.Session()
s.proxies.update(proxies)

vk_session = vk_api.VkApi('номер', 'пароль', session=s)
vk_session.auth()

vk = vk_session.get_api()

Авторизация используя токен vk_api.exceptions.ApiError: [29] Rate limit reached

token = vk_api.VkApi(token=tokenData, session=s)
vk = token.get_api()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.