🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@marlock/node-vk-api

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@marlock/node-vk-api

Native-like vk API module

0.0.1
unpublished
latest
Version published
Maintainers
1
Created

node-vk-api

Native-like vk API module

Getting Started

Get to your project deirectory

Install module using npm

npm install node-vk-api

or using yarn

yarn add node-vk-api

Simple usage

const API = require('node-vk-api'),
    vkAPI = new API({
        token: 'your_secret_token',
        version: '5.73' //actual version
    });

Proxy

const API = require('node-vk-api'),
    vkAPI = new API({
        token: 'your_secret_token',
        version: '5.73',
        proxy: 'http://someproxy.com:80',
    });

HTTPS Proxy

You can use not only http proxy. For example, use https proxy

const API = require('node-vk-api'),
    vkAPI = new API({
        token: 'your_secret_token',
        version: '5.73',
        proxy: 'https://someproxy.com:443',
    });

Some servers need to be used in non-strict TLS mode. For now, there are no instumentary to do following. Temporary fix:

const API = require('node-vk-api'),
    vkAPI = new API({
        token: 'your_secret_token',
        version: '5.73',
        proxy: 'https://someproxy.com:443',
    });
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";

Some additionals

You can use own user-agent

const API = require('node-vk-api'),
    vkAPI = new API({
        token: 'your_secret_token',
        version: '5.73',
        userAgent: 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) ArchLinux Chromium/64.0.3282.167 Chrome/64.0.3282.167 Safari/537.36'
    });

Methods

Supported all the method in native-like way with promises. (You can use it in await/async mode)

var vkAPI = new API({
    token: 'your_secret_token',
    version: '5.73'
});
vkAPI.messages.getHistory({
    peer_id: 2000000002,
    count: 200,
    rev: 1
}).then(data => {
    console.log(data)
}).catch(err => {
    console.log('Got error:');
    console.error(err)
})

FAQs

Package last updated on 06 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts