VK ID Authentication Integration for Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
VK ID Authentication Integration for Mobile App
Simple
~1 business day
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Developing VK ID Authentication

VK ID is current replacement for deprecated VK SDK. VKontakte relaunched authentication in 2023-2024: new SDK with OneTab support (authorization via VKontakte app without password entry), improved PKCE flow, separate documentation for mobile. Old VKSdk deprecated, though some projects still use it.

Current SDK: VKID

New SDK called VKID (don't confuse with old VKSdk). For iOS — Swift Package: https://github.com/VKCOM/vkid-ios-sdk. For Android — Gradle: implementation "com.vk.id:vkid:latest".

Main UX advantage of new SDK: if VKontakte app installed on device, authorization through it with one tap without login/password — "OneTab" authorization. Without VKontakte — OAuth2 PKCE in browser.

Setup: in VK developer personal account create app, get client_id. On iOS add URL Scheme vk{client_id} for redirect handling. On Android — Intent Filter on vk{client_id}://vk.com/blank.html.

// iOS
let vkid = VKID(config: .init(appCredentials: .init(clientId: "YOUR_CLIENT_ID", clientSecret: "YOUR_CLIENT_SECRET")))

let sheet = OneTapBottomSheet(
    serviceName: "MyApp",
    targetActionText: .signIn,
    oneTapButton: .init(
        height: .medium(),
        cornerRadius: 8
    )
)
// Show via UISheetPresentationController

After authorization get accessToken and userId. To get profile data — VK API request: users.get with fields photo_200,screen_name. Server token verification via secure.checkToken API method.

Key detail: VK ID tokens have TTL, need refresh mechanism. New VKID SDK manages refresh automatically with proper setup.

Timeline: 4-7 working days. Includes new VKID SDK integration, OneTab and browser flow handling, server verification.