Socket
Socket
Sign inDemoInstall

vksdk

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vksdk - npm Package Compare versions

Comparing version 5.0.3 to 5.1.0

2

package.json
{
"name": "vksdk",
"description": "SDK for API of vk.com",
"version": "5.0.3",
"version": "5.1.0",
"homepage": "https://github.com/57uff3r/nodejs-vksdk",

@@ -6,0 +6,0 @@ "email": "57uff3r@gmail.com",

@@ -271,7 +271,12 @@ /**

port: 443,
path: '/method/' + _method + '?' + requestString
path: '/method/' + _method ,
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': requestString.length
}
};
https.get(options, function(res) {
var apiResponse = new String();
var post_req = https.request(options, function(res) {
var apiResponse = "";
res.setEncoding('utf8');

@@ -297,2 +302,5 @@

});
post_req.write(requestString);
post_req.end();
};

@@ -299,0 +307,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc