Onikiro / VkInstruments

VK SEO tools in ASP.NET Core

Home Page:https://vkinstruments.herokuapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VK SEO instruments

Build

VK Likes parser from wall-post

Gets VK profiles links of people who liked your post.

Presentation:

presentation gif

Profile links filter by input Ids

Gets VK profile links, filters them and returns filtered list.

Presentation:

presentation gif

Demo

        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}");
            }
        }

Installing

To deploy this .net Core app you must:

  1. Сreate a VK app
  2. Copy ServiceToken from your app
  3. Paste VkInstruments.Web -> appsetings.json your ServiceToken

Collaboration

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. :)

Used libraries

Vkontakte API for .NET

Supported by

About

VK SEO tools in ASP.NET Core

https://vkinstruments.herokuapp.com

License:MIT License


Languages

Language:C# 92.0%Language:HTML 6.0%Language:CSS 1.3%Language:Dockerfile 0.7%