@robinpath/pinterest
v0.1.1
Published
> Pinterest module for RobinPath.
Keywords
Readme
@robinpath/pinterest
Pinterest module for RobinPath.
Why use this module?
The pinterest module lets you:
- listBoards
- getBoard
- createBoard
- updateBoard
- deleteBoard
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/pinterestQuick Start
1. Set up credentials
pinterest.setCredentials "your-credentials"2. listBoards
pinterest.listBoardsAvailable Functions
| Function | Description |
|----------|-------------|
| pinterest.setCredentials | Configure pinterest credentials. |
| pinterest.listBoards | listBoards |
| pinterest.getBoard | getBoard |
| pinterest.createBoard | createBoard |
| pinterest.updateBoard | updateBoard |
| pinterest.deleteBoard | deleteBoard |
| pinterest.listBoardPins | listBoardPins |
| pinterest.listPins | listPins |
| pinterest.getPin | getPin |
| pinterest.createPin | createPin |
| pinterest.updatePin | updatePin |
| pinterest.deletePin | deletePin |
| pinterest.listBoardSections | listBoardSections |
| pinterest.createBoardSection | createBoardSection |
| pinterest.getUserAccount | getUserAccount |
| pinterest.getPinAnalytics | getPinAnalytics |
| pinterest.getBoardAnalytics | getBoardAnalytics |
Examples
listBoards
pinterest.listBoardsgetBoard
pinterest.getBoardcreateBoard
pinterest.createBoardIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/pinterest";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
pinterest.setCredentials "your-credentials"
pinterest.listBoards
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/facebook— Facebook module for complementary functionality@robinpath/instagram— Instagram module for complementary functionality@robinpath/twitter— Twitter/X module for complementary functionality@robinpath/linkedin— LinkedIn module for complementary functionality@robinpath/tiktok— TikTok module for complementary functionality
License
MIT
