Gets VK profiles links of people who liked your post.
Presentation:
Gets VK profile links, filters them and returns filtered list.
Presentation:
private static async Task Main()
{
var vkService = new VkService(new VkApi(NullLogger<VkApi>.Instance), "yourtoken");
Console.Write("\nEnter post link: ");
var postLink = Console.ReadLine();
var profileIds = await vkService.ParseLikedUserIdsFromPost(postLink);
foreach (var address in profileIds)
{
Console.WriteLine($"vk.com/id{address}");
}
}
To deploy this .net Core app you must:
- Сreate a VK app
- Copy ServiceToken from your app
- Paste VkInstruments.Web -> appsetings.json your ServiceToken
I haven't implemented some features, so you can take any task from Projects menu and create a pull request with your improvements. You are welcome. :)