1vk 中文文档教程

发布于 8年前 浏览 24 项目主页 更新于 3年前

1vk

vk.com API 的智能高效 sdk

Behind the scene:

  1. It uses execute api method to perform more api calls per permitted time interval.
    In fact, you have only 3 request per second permitted but with 1vk you get up to 75 request per second
  2. It handles "Too many requests per second" error thus you no more need to concern about it.

Install

npm i 1vk --save

How to use

With browser (vk.com open api sdk)

var ApiQueue = require("1vk");
// initialization and authorisation (VK.init , VK.Auth.login)
// then
var apiQueue = new ApiQueue(3, 1e3, VK.Api.call)
var usersFriends = [];
// gets friends for 1000 users
for (var i=0; i<1e3; i=i+1)
    apiQueue.request('friends.get', {user_id: i}).then(function(friends) {
        usersFriends.push(friends)
    })
console.dir(usersFriends);

With node

您可以使用任何开放的 api,例如库 (function api(methodName, params, callback))

Docs

请阅读源代码。 代码非常简单,并且带有 jsdoc 注释。

1vk

Smart and efficient sdk for vk.com API

Behind the scene:

  1. It uses execute api method to perform more api calls per permitted time interval.
    In fact, you have only 3 request per second permitted but with 1vk you get up to 75 request per second
  2. It handles "Too many requests per second" error thus you no more need to concern about it.

Install

npm i 1vk --save

How to use

With browser (vk.com open api sdk)

var ApiQueue = require("1vk");
// initialization and authorisation (VK.init , VK.Auth.login)
// then
var apiQueue = new ApiQueue(3, 1e3, VK.Api.call)
var usersFriends = [];
// gets friends for 1000 users
for (var i=0; i<1e3; i=i+1)
    apiQueue.request('friends.get', {user_id: i}).then(function(friends) {
        usersFriends.push(friends)
    })
console.dir(usersFriends);

With node

You can use any open api like library (function api(methodName, params, callback))

Docs

Please read source code. The code is pretty simple and jsdoc annotated.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文