Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wykop-es6-2

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wykop-es6-2

Wykop.pl API wrapper

  • 0.6.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

wykop-es6

david-dm npm npm

Instalacja

npm install wykop-es6-2

Dokumentacja Wykop API

http://www.wykop.pl/dla-programistow/dokumentacja/

Przykładowe użycie (promises)

var Wykop = require('wykop-es6');

var wykop = new Wykop('appkey', 'secretkey');
var user  = new Wykop('appkey', 'secretkey');

// logujemy usera
user.login('accountkey')
	.then(function(res) {
		// user zostal zalogowany
		console.log(res);
		// dodajemy wpis
		return user.request('Entries', 'Add', {post: {body: "test", embed: "http://plik.jpg"}});
	})
	.then(function(res) {
		console.log(res);
		// pobieramy stream mikrobloga jako niezalogowani
		return wykop.request('Stream', 'Index', {api: {page: 1}});
	})
	.then(function(res) {
		console.log(res);
		var firstEntryId = res[0].id; // id pierwszego wpisu ze streamu

		// plusujemy pierwszy wpis ze streamu wpisów! Używamy znów zalogowanej instancji klasy Wykop - user
		return user.request('Entries', 'Vote', { params: ['entry', firstEntryId] });
	})
	.then(function(res) {
		console.log(res);
	})
	.catch(function(err) {
		console.log(err);
});

Przykładowe użycie (callback)

user.login(accountkey, function(error, res) {
	if (error) throw error;
	console.log(res);

	user.request('Entries', 'Add', {
		post: {
			body: "test",
			embed: "http://plik.jpg"
		}
	}, function(error, res) {
		if (error) throw error;
		console.log(res);
	});
});

Opcje

var options = {
	output:  'clear', // wszystkie pola odpowiedzi zostaną wyczyszczone z kodu HTML.
	format:  'jsonp', // format odpowiedzi, domylnie json, do wyboru xml lub jsonp
	timeout: '30000', // czas (w ms) oczekiwania na odpowiedź serwera wykopu, domyślnie 30000ms (30 sekund)
	useragent: 'WypokAgent', // useragent, domyslnie WypokAgent
	ssl: false // czy wysylac requesty pod szyfrowany adres api
};
var wykop = new Wykop(<appkey>, <secretkey>, options);

Parametry metody .request

var reqOptions = {
	params: [ ], //parametry metody np. [14723797, 48940057]
	api: { }, // parametry API (poza userkey, appkey) np. {page: 3, sort: 'votes'}
	post: { } // Parametry POST np. {body: 'tekst', embed: 'link'}
};
wykop.request('rtype', 'rmethod', reqOptions);

Keywords

FAQs

Package last updated on 01 Jun 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

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