n8n-nodes-pinterest 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,43 +8,51 @@ Supports:
8
8
  - List boards (current user)
9
9
  - Create a Pin by letting Pinterest scrape a public image URL
10
10
 
11
- Notes:
11
+ ## 🚀 Full Documentation & Setup Guide
12
12
 
13
- - Uses undocumented web endpoints; use at your own risk
14
- - May violate Pinterest's Terms of Service and can break without notice
15
- - Consider proxies if Pinterest flags your IP
13
+ **IMPORTANT:** For complete installation, setup, and usage instructions, please visit our comprehensive guide:
16
14
 
17
- ## Install
15
+ 📖 **[Complete Guide: Automate Pinterest Posting with n8n](https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/)**
18
16
 
19
- ```
17
+ This guide includes:
18
+ - Step-by-step installation
19
+ - Cookie authentication setup
20
+ - 5+ workflow examples
21
+ - Safety tips and troubleshooting
22
+ - FAQ and best practices
23
+
24
+ ## Quick Install
25
+
26
+ ```bash
20
27
  npm install n8n-nodes-pinterest
21
28
  ```
22
29
 
23
30
  Restart n8n. The node and credential will appear in the editor.
24
31
 
25
- ## Credentials
26
-
27
- Add a new credential "Pinterest Cookie" and paste your `_pinterest_sess` value from a logged-in browser session. Optionally set a proxy.
32
+ ## Available Nodes
28
33
 
29
- ## Node usage
34
+ - **Pinterest Cookie → Get Boards**: Lists all your Pinterest boards
35
+ - **Pinterest Cookie → Create Pin**: Creates a new pin from image URL
30
36
 
31
- ### Pinterest Cookie Node: Board → Get Many
32
- Lists boards via Pinterest web resource endpoint.
37
+ ## Features
33
38
 
34
- ### Pinterest Cookie Node: Pin → Create
35
- Creates a pin using cookie-based authentication.
39
+ - Cookie-based authentication using `_pinterest_sess`
40
+ - Automatic retry on common errors
41
+ - Proxy support
42
+ - Board management
43
+ - Bulk pin creation
36
44
 
37
- Inputs:
45
+ ## Notes
38
46
 
39
- - Board (select from available boards)
40
- - Image URL: Direct URL of the image for Pinterest to scrape
41
- - Optional: Title, Description, Link
47
+ - Uses undocumented web endpoints; use at your own risk
48
+ - May violate Pinterest's Terms of Service and can break without notice
49
+ - Consider proxies if Pinterest flags your IP
42
50
 
43
- The node calls the `/pin/find/?url=...` flow and creates the pin with `method="scraped"`. Works for images that are accessible over HTTPS.
51
+ ## ⚠️ Important
44
52
 
45
- Additional behavior:
53
+ For detailed setup instructions, cookie extraction, and advanced workflows, **please refer to the complete guide**:
46
54
 
47
- - If Pinterest responds with errors such as "This site doesn't allow you to save Pins" or "Please make sure the URL is correct", the node automatically retries without the link.
55
+ **[https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/](https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/)**
48
56
 
49
57
  ## Disclaimer
50
58
 
@@ -5,7 +5,7 @@ class PinterestCookieApi {
5
5
  constructor() {
6
6
  this.name = 'pinterestCookieApi';
7
7
  this.displayName = 'Pinterest Cookie';
8
- this.documentationUrl = 'https://www.pinterest.com';
8
+ this.documentationUrl = 'https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/';
9
9
  this.properties = [
10
10
  {
11
11
  displayName: 'Pinterest Session Cookie (_pinterest_sess)',
@@ -14,14 +14,14 @@ class PinterestCookieApi {
14
14
  typeOptions: { password: true },
15
15
  default: '',
16
16
  required: true,
17
- description: 'Value of the _pinterest_sess cookie from a logged-in session',
17
+ description: 'Session cookie value. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
18
18
  },
19
19
  {
20
20
  displayName: 'Proxy',
21
21
  name: 'proxy',
22
22
  type: 'string',
23
23
  default: '',
24
- description: 'Optional HTTP proxy (e.g. http://user:pass@host:port)',
24
+ description: 'HTTP proxy format. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
25
25
  },
26
26
  ];
27
27
  }
@@ -67,7 +67,7 @@ class PinterestCookie {
67
67
  group: ['output'],
68
68
  version: 1,
69
69
  subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
70
- description: 'Pinterest via cookie method (web endpoints)',
70
+ description: 'Pinterest via cookie method (web endpoints). For complete setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
71
71
  defaults: { name: 'Pinterest (Cookie)' },
72
72
  inputs: ['main'],
73
73
  outputs: ['main'],
@@ -106,7 +106,7 @@ class PinterestCookie {
106
106
  displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
107
107
  default: '',
108
108
  required: true,
109
- description: 'Board to pin to',
109
+ description: 'Select target board. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
110
110
  },
111
111
  {
112
112
  displayName: 'Image URL',
@@ -115,7 +115,7 @@ class PinterestCookie {
115
115
  default: '',
116
116
  required: true,
117
117
  displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
118
- description: 'Direct URL of the image for Pinterest to scrape',
118
+ description: 'Image URL for Pinterest to scrape. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
119
119
  },
120
120
  {
121
121
  displayName: 'Title',
@@ -124,7 +124,7 @@ class PinterestCookie {
124
124
  default: '',
125
125
  typeOptions: { maxLength: 100 },
126
126
  displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
127
- description: 'Maximum 100 characters',
127
+ description: 'Pin title (max 100 chars). Full guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
128
128
  },
129
129
  {
130
130
  displayName: 'Description',
@@ -133,7 +133,7 @@ class PinterestCookie {
133
133
  default: '',
134
134
  typeOptions: { maxLength: 800 },
135
135
  displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
136
- description: 'Maximum 800 characters',
136
+ description: 'Pin description (max 800 chars). Guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
137
137
  },
138
138
  {
139
139
  displayName: 'Link',
@@ -141,7 +141,7 @@ class PinterestCookie {
141
141
  type: 'string',
142
142
  default: '',
143
143
  displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
144
- description: 'Destination URL for the pin',
144
+ description: 'Destination URL. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
145
145
  },
146
146
  // Board ops
147
147
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-pinterest",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "n8n community nodes for Pinterest v5 API (list boards, create pins)",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",