0.0.2 • Published 8 years ago
shaarli-api v0.0.2
Shaarli-api
a client in node.js for a shaarli api.
Installing
To utilize shaarli-api client, install the the npm module:
npm install shaarli-apiAfter installing the npm package you can now start request shaarli instance like so:
var shaarliApi = require('shaarli-api');
var client = new shaarliApi(url,secret);Get Info
Get information about this instance.
client.getInfo(function(err,info){
console.log(info);
})Get Links
Get a collection of links ordered by creation date.
params is a collection wich can have the following keys:
offset(int) - Offset from which to start listing linkslimit(int| "all") - Number of links to retrieve or 'all'searchtags(Array) - List of tagssearchterm(Array) - Search terms across all links fieldsvisibility("all" | "private" | "public") - Filter links by visibility
var params = {
"offset": 0,
"limit": 10,
"searchtags": ["gif","cat"],
"searchterm": ["looks","at"],
"visibility": "all"
};
client.getLinks(params,function(err,links){
console.log(links);
})Get Link
Get a link with its id.
client.getLink(id,function(err,link){
console.log(link);
})Post Link
Create a new link or note.
params is a collection wich can have the following keys:
description(string) - Link descriptionprivate(boolean) - Link visibilitytags(Array) - List of tags associated with the linktitle(string) - Link titleurl(string) - Link URL
var params = {
"description": "blabla",
"private": false,
"tags": ["cat","image"],
"title": "jumping cats",
"url": "http://jumpin.cat/"
};
client.postLink(params,function(err,newLink){
console.log(newLink);
});Put Link
Update an existing link with provided request data. Keep in mind that all link’s fields will be updated.
params is a collection wich can have the following keys:
description(string) - Link descriptionprivate(boolean) - Link visibilitytags(Array) - List of tags associated with the linktitle(string) - Link titleurl(string) - Link URL
var params = {
"description": "bloblo",
"private": false,
"tags": ["image","truc"],
"title": "jumping cats calendar",
"url": "http://jumpin.cat/post"
};
client.putLink(id,params,function(err,updateLink){
console.log(updateLink);
});Delete Link
Delete a link.
client.deleteLink(id,function(err){
});