Facebook Settings
Provider settings for Facebook posts
Overview
Facebook integration allows you to post to Facebook pages. You can optionally include a link URL in your posts.
Settings Schema
{
"__type": "facebook",
"url": "https://example.com/my-article"
}
Properties
| Property | Type | Required | Description |
|---|---|---|---|
__type | string | ✅ | Must be "facebook" |
url | string | ❌ | Optional link URL to include in the post |
Examples
Simple text post
{
"type": "now",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": {
"id": "your-facebook-integration-id"
},
"value": [
{
"content": "Check out our latest updates! 🎉",
"image": []
}
],
"settings": {
"__type": "facebook"
}
}
]
}
Post with link
{
"type": "schedule",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": {
"id": "your-facebook-integration-id"
},
"value": [
{
"content": "We just published a new blog post about social media automation!",
"image": []
}
],
"settings": {
"__type": "facebook",
"url": "https://example.com/blog/social-media-automation"
}
}
]
}
Post with image
{
"type": "schedule",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": {
"id": "your-facebook-integration-id"
},
"value": [
{
"content": "Beautiful sunset from our office! 🌅",
"image": [
{
"id": "img-123",
"path": "https://uploads.sipstory.tech/sunset.jpg"
}
]
}
],
"settings": {
"__type": "facebook"
}
}
]
}
Notes
- The
urlfield is optional and creates a link preview in the post - If posting with images, Facebook will display them as attachments
- Video uploads are also supported