n8n-nodes-pinterest 0.2.0 → 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
|
-
|
|
11
|
+
## 🚀 Full Documentation & Setup Guide
|
|
12
12
|
|
|
13
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
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
|
-
|
|
32
|
-
Lists boards via Pinterest web resource endpoint.
|
|
37
|
+
## Features
|
|
33
38
|
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
45
|
+
## Notes
|
|
38
46
|
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
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
|
-
|
|
51
|
+
## ⚠️ Important
|
|
44
52
|
|
|
45
|
-
|
|
53
|
+
For detailed setup instructions, cookie extraction, and advanced workflows, **please refer to the complete guide**:
|
|
46
54
|
|
|
47
|
-
-
|
|
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://
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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,21 +115,25 @@ class PinterestCookie {
|
|
|
115
115
|
default: '',
|
|
116
116
|
required: true,
|
|
117
117
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
118
|
-
description: '
|
|
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',
|
|
122
122
|
name: 'title',
|
|
123
123
|
type: 'string',
|
|
124
124
|
default: '',
|
|
125
|
+
typeOptions: { maxLength: 100 },
|
|
125
126
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
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/',
|
|
126
128
|
},
|
|
127
129
|
{
|
|
128
130
|
displayName: 'Description',
|
|
129
131
|
name: 'description',
|
|
130
132
|
type: 'string',
|
|
131
133
|
default: '',
|
|
134
|
+
typeOptions: { maxLength: 800 },
|
|
132
135
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
136
|
+
description: 'Pin description (max 800 chars). Guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
|
|
133
137
|
},
|
|
134
138
|
{
|
|
135
139
|
displayName: 'Link',
|
|
@@ -137,7 +141,7 @@ class PinterestCookie {
|
|
|
137
141
|
type: 'string',
|
|
138
142
|
default: '',
|
|
139
143
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
140
|
-
description: 'Destination URL
|
|
144
|
+
description: 'Destination URL. Setup guide: https://dps.media/huong-dan-toan-dien-tu-dong-dang-bai-len-pinterest-voi-n8n-update/',
|
|
141
145
|
},
|
|
142
146
|
// Board ops
|
|
143
147
|
{
|