There is such a module on Python, vk is called. With it, you can log in using your login and password :

 session = vk.AuthSession(app_id=APP_ID, user_login=LOGIN, user_password=PASS) vkapi = vk.API(session) 

I want to do the same on java , since the application I am doing is not browser-based, and the usual implicit flow will not work, but all searches do not lead to anything.

  • will your application have a GUI? - Mikhail Vaysman
  • @MikhailVaysman will, but embedding the browser is not an option - lisovskey
  • Which library will you use? javafx? - Mikhail Vaysman
  • @MikhailVaysman yes, javafx - lisovskey
  • there is a webview , so no need to embed anything. - Mikhail Vaysman

0