We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b5a0d commit 65acb43Copy full SHA for 65acb43
vk_api/vk_api.py
@@ -488,10 +488,12 @@ def _api_login(self):
488
if connect_data['type'] != 'okay':
489
raise AuthError('Unknown API auth error')
490
auth_token = connect_data['data']['access_token']
491
+ auth_user_hash = connect_data['data']['auth_user_hash']
492
response = self.http.post(
493
'https://api.vk.com/method/auth.getOauthToken',
494
{
495
'hash': return_auth_hash,
496
+ 'auth_user_hash': auth_user_hash,
497
'app_id': self.app_id,
498
'client_id': self.app_id,
499
'scope': self.scope,
0 commit comments