n8n-nodes-socialfetch 0.1.0
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/LICENSE +21 -0
- package/README.md +44 -0
- package/dist/credentials/SocialFetchApi.credentials.js +37 -0
- package/dist/credentials/socialfetch.svg +29 -0
- package/dist/nodes/SocialFetch/SocialFetch.node.js +41 -0
- package/dist/nodes/SocialFetch/descriptions/auth.generated.js +45 -0
- package/dist/nodes/SocialFetch/descriptions/facebook.generated.js +1625 -0
- package/dist/nodes/SocialFetch/descriptions/index.generated.js +79 -0
- package/dist/nodes/SocialFetch/descriptions/instagram.generated.js +548 -0
- package/dist/nodes/SocialFetch/descriptions/linkedin.generated.js +201 -0
- package/dist/nodes/SocialFetch/descriptions/reddit.generated.js +634 -0
- package/dist/nodes/SocialFetch/descriptions/spotify.generated.js +195 -0
- package/dist/nodes/SocialFetch/descriptions/telegram.generated.js +156 -0
- package/dist/nodes/SocialFetch/descriptions/threads.generated.js +316 -0
- package/dist/nodes/SocialFetch/descriptions/tiktok.generated.js +1797 -0
- package/dist/nodes/SocialFetch/descriptions/twitter.generated.js +606 -0
- package/dist/nodes/SocialFetch/descriptions/web.generated.js +283 -0
- package/dist/nodes/SocialFetch/descriptions/youtube.generated.js +993 -0
- package/dist/nodes/SocialFetch/shared/pagination.js +37 -0
- package/dist/nodes/SocialFetch/socialfetch.svg +29 -0
- package/package.json +61 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.linkedin = void 0;
|
|
4
|
+
exports.linkedin = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"linkedin"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"default": "linkedin.profile.get",
|
|
18
|
+
"options": [
|
|
19
|
+
{
|
|
20
|
+
"name": "Profile",
|
|
21
|
+
"value": "linkedin.profile.get",
|
|
22
|
+
"action": "Get LinkedIn profile",
|
|
23
|
+
"description": "Get a LinkedIn profile.",
|
|
24
|
+
"routing": {
|
|
25
|
+
"request": {
|
|
26
|
+
"method": "GET",
|
|
27
|
+
"url": "/v1/linkedin/profiles"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Company page",
|
|
33
|
+
"value": "linkedin.company.get",
|
|
34
|
+
"action": "Get LinkedIn company page",
|
|
35
|
+
"description": "Get a LinkedIn company page.",
|
|
36
|
+
"routing": {
|
|
37
|
+
"request": {
|
|
38
|
+
"method": "GET",
|
|
39
|
+
"url": "/v1/linkedin/companies"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Company posts",
|
|
45
|
+
"value": "linkedin.company.posts.list",
|
|
46
|
+
"action": "List LinkedIn company posts",
|
|
47
|
+
"description": "Get posts from a LinkedIn company page.",
|
|
48
|
+
"routing": {
|
|
49
|
+
"request": {
|
|
50
|
+
"method": "GET",
|
|
51
|
+
"url": "/v1/linkedin/companies/posts"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "Post or article",
|
|
57
|
+
"value": "linkedin.post.get",
|
|
58
|
+
"action": "Get LinkedIn post or article",
|
|
59
|
+
"description": "Get a LinkedIn post or article.",
|
|
60
|
+
"routing": {
|
|
61
|
+
"request": {
|
|
62
|
+
"method": "GET",
|
|
63
|
+
"url": "/v1/linkedin/posts"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"displayName": "Url",
|
|
71
|
+
"name": "url",
|
|
72
|
+
"type": "string",
|
|
73
|
+
"default": "",
|
|
74
|
+
"description": "LinkedIn public profile URL for this lookup.",
|
|
75
|
+
"placeholder": "e.g. https://example.com/page",
|
|
76
|
+
"required": true,
|
|
77
|
+
"routing": {
|
|
78
|
+
"send": {
|
|
79
|
+
"type": "query",
|
|
80
|
+
"property": "url"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"displayOptions": {
|
|
84
|
+
"show": {
|
|
85
|
+
"resource": [
|
|
86
|
+
"linkedin"
|
|
87
|
+
],
|
|
88
|
+
"operation": [
|
|
89
|
+
"linkedin.profile.get"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"displayName": "Url",
|
|
96
|
+
"name": "url",
|
|
97
|
+
"type": "string",
|
|
98
|
+
"default": "",
|
|
99
|
+
"description": "LinkedIn company page URL for this lookup.",
|
|
100
|
+
"placeholder": "e.g. https://example.com/page",
|
|
101
|
+
"required": true,
|
|
102
|
+
"routing": {
|
|
103
|
+
"send": {
|
|
104
|
+
"type": "query",
|
|
105
|
+
"property": "url"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"displayOptions": {
|
|
109
|
+
"show": {
|
|
110
|
+
"resource": [
|
|
111
|
+
"linkedin"
|
|
112
|
+
],
|
|
113
|
+
"operation": [
|
|
114
|
+
"linkedin.company.get"
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"displayName": "Url",
|
|
121
|
+
"name": "url",
|
|
122
|
+
"type": "string",
|
|
123
|
+
"default": "",
|
|
124
|
+
"description": "Public LinkedIn company page URL for the organization whose posts should be listed.",
|
|
125
|
+
"placeholder": "e.g. https://example.com/page",
|
|
126
|
+
"required": true,
|
|
127
|
+
"routing": {
|
|
128
|
+
"send": {
|
|
129
|
+
"type": "query",
|
|
130
|
+
"property": "url"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"displayOptions": {
|
|
134
|
+
"show": {
|
|
135
|
+
"resource": [
|
|
136
|
+
"linkedin"
|
|
137
|
+
],
|
|
138
|
+
"operation": [
|
|
139
|
+
"linkedin.company.posts.list"
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"displayName": "Additional Fields",
|
|
146
|
+
"name": "additionalOptions",
|
|
147
|
+
"type": "collection",
|
|
148
|
+
"placeholder": "Add Field",
|
|
149
|
+
"default": {},
|
|
150
|
+
"displayOptions": {
|
|
151
|
+
"show": {
|
|
152
|
+
"resource": [
|
|
153
|
+
"linkedin"
|
|
154
|
+
],
|
|
155
|
+
"operation": [
|
|
156
|
+
"linkedin.company.posts.list"
|
|
157
|
+
]
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"options": [
|
|
161
|
+
{
|
|
162
|
+
"displayName": "Page",
|
|
163
|
+
"name": "page",
|
|
164
|
+
"type": "number",
|
|
165
|
+
"default": 0,
|
|
166
|
+
"description": "1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company.",
|
|
167
|
+
"routing": {
|
|
168
|
+
"send": {
|
|
169
|
+
"type": "query",
|
|
170
|
+
"property": "page"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"displayName": "Url",
|
|
178
|
+
"name": "url",
|
|
179
|
+
"type": "string",
|
|
180
|
+
"default": "",
|
|
181
|
+
"description": "Public permalink to the post or article.",
|
|
182
|
+
"placeholder": "e.g. https://example.com/page",
|
|
183
|
+
"required": true,
|
|
184
|
+
"routing": {
|
|
185
|
+
"send": {
|
|
186
|
+
"type": "query",
|
|
187
|
+
"property": "url"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"displayOptions": {
|
|
191
|
+
"show": {
|
|
192
|
+
"resource": [
|
|
193
|
+
"linkedin"
|
|
194
|
+
],
|
|
195
|
+
"operation": [
|
|
196
|
+
"linkedin.post.get"
|
|
197
|
+
]
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
];
|