There is a program that processes some data, it will be placed on the VPS windows server.

There was a thought to bind a group in Vk in order to receive this data through messages from users.

BUT, I am not familiar with the Callback API at all, tell me what is needed for its work, is it possible to connect it directly to the VPS windows prog (it uses VKNET), or how to implement it differently.

  • (IMHO) It is necessary to work with the API directly, and not through a hundred-day library that does not support many functions (including the Callback API ). After all, we often do not need over 999 ++ methods of this API, but only 3-10, and for them it is easier to make our own implementation. By the way, Callback API - if I'm not mistaken, this is when VK itself sends a request to your server with the necessary data. So even VKNET is not needed here, just accept POST / GET requests on your project. - EvgeniyZ

0