n8n-nodes-pinterest 0.2.1 → 0.2.3
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
|
}
|
|
@@ -63,11 +63,11 @@ class PinterestCookie {
|
|
|
63
63
|
this.description = {
|
|
64
64
|
displayName: 'Pinterest (Cookie)',
|
|
65
65
|
name: 'pinterestCookie',
|
|
66
|
-
icon: '
|
|
66
|
+
icon: 'file:image.svg',
|
|
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,7 +115,7 @@ 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',
|
|
@@ -124,7 +124,7 @@ class PinterestCookie {
|
|
|
124
124
|
default: '',
|
|
125
125
|
typeOptions: { maxLength: 100 },
|
|
126
126
|
displayOptions: { show: { resource: ['pin'], operation: ['create'] } },
|
|
127
|
-
description: '
|
|
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: '
|
|
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
|
|
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/image.gif
ADDED
|
Binary file
|
package/image.svg
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-pinterest",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "n8n community nodes for Pinterest v5 API (list boards, create pins)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"types": "dist/index.d.ts",
|
|
16
16
|
"files": [
|
|
17
|
-
"dist/**"
|
|
17
|
+
"dist/**",
|
|
18
|
+
"image.gif",
|
|
19
|
+
"image.svg"
|
|
18
20
|
],
|
|
19
21
|
"scripts": {
|
|
20
22
|
"build": "tsc -p ."
|