@pakoor/n8n-nodes-instagram 0.1.17 → 0.1.18
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 +28 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -192,6 +192,34 @@ Receives webhook events from Instagram with dual outputs:
|
|
|
192
192
|
}
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
+
### Create Carousel Post (JSON/Expression)
|
|
196
|
+
|
|
197
|
+
When using the **Create Carousel** operation with **Input Mode** set to `JSON / Expression`, use the following array format for the **Carousel Items (JSON)** field. This is useful when mapping data from previous nodes.
|
|
198
|
+
|
|
199
|
+
```json
|
|
200
|
+
[
|
|
201
|
+
{
|
|
202
|
+
"mediaType": "IMAGE",
|
|
203
|
+
"mediaUrl": "https://example.com/image1.jpg",
|
|
204
|
+
"userTags": "username1,username2" // Optional: Comma-separated usernames
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"mediaType": "VIDEO",
|
|
208
|
+
"mediaUrl": "https://example.com/video1.mp4"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"mediaType": "IMAGE",
|
|
212
|
+
"mediaUrl": "https://example.com/image2.jpg"
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
**Note:**
|
|
218
|
+
- **mediaType**: Must be `IMAGE` or `VIDEO`.
|
|
219
|
+
- **mediaUrl**: Must be a valid, public HTTPS URL.
|
|
220
|
+
- **userTags**: (Optional) Users will be tagged automatically on the image.
|
|
221
|
+
- **Limit**: 2 to 10 items per carousel.
|
|
222
|
+
|
|
195
223
|
### Reply to Comments Automatically
|
|
196
224
|
|
|
197
225
|
Use the Instagram Trigger to receive comment events, then reply:
|