m2kdevelopments / lindle
Lindle PHP API to save all your links all in one place
dev-main
2024-05-15 07:37 UTC
This package is not auto-updated.
Last update: 2024-12-21 12:06:20 UTC
README
Lindle is your ultimate solution for managing and organizing your web links with ease. This versatile Chrome extension empowers you to save, categorize, and access your online resources like never before.
API Documentation
The API Documentation for Lindle.
Installation
composer install lindle
Getting Started
Get your Lindle API key from Chrome Extension.
$apiKey = "YOUR_API";
$lindle = new Lindle($apiKey);
Get Links
$links = $lindle->getLinks();
print_r($links);
Get Folders
$folders = $lindle->getFolders();
print_r($folders);
Get Synced Bookmarks
$data = $lindle->getSyncedBookmarks();
print_r($data['links']);
print_r($data['folders']);