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

Unknown API auth error #496

Open
orignekit opened this issue Sep 26, 2023 · 4 comments
Open

Unknown API auth error #496

orignekit opened this issue Sep 26, 2023 · 4 comments

Comments

@orignekit
Copy link

Unknown API auth error

vk_api: 11.9.9
Python: 3.10

import vk_api
import os

login = os.environ["login"]
password = os.environ['pass']

session = vk_api.VkApi(login, password)

try:
    session.auth()
except vk_api.AuthError as error:
    print(error)
    exit()

vk = session.get_api()

def set_status(status):
    vk.status.set(text=status)

set_status("Testing vk_api")
@fleshofcat
Copy link

У меня была такая же ошибка, похоже что в последнем мастере (a5f545f) всё работает нормально

@Memexurer
Copy link

https://oauth.vk.com/authorize?client_id=6222115&scope=140492255&response_type=token
используйте это, чтобы избежать этой ошибки

@M1h4n1k
Copy link

M1h4n1k commented Feb 11, 2024

Все еще актуально. Пробовал с мастера меняя клиент айди, скоуп, аккаунты - ничего не помогает. Коммит, который выше указывали, тоже не удалось заставить работать

UPD: в моем случае помогло закомментить вот эту строчку, не знаю ломает ли какую-то другую логику

response = self.http.get(response.url)

UPD2: сделал форк https://github.com/M1h4n1k/vk_api_fix_auth, установить можно вот так
pip install git+https://github.com/M1h4n1k/vk_api_fix_auth.git

@M1h4n1k M1h4n1k mentioned this issue Feb 21, 2024
@black-chapa
Copy link

(на момент написания) необходимо не только указать client_id но и client_secret

мне помогло:

vk_session = vk_api.VkApi('+79995550011', 'password', app_id=6287487, client_secret="QbYic1K3lEV5kTGiqlq2")

(данные с веб версии)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants