
Schedule
Schedule
yaml
type: "io.kestra.plugin.meta.facebook.posts.Schedule"Examples
yaml
id: facebook_schedule_post
namespace: company.team
tasks:
- id: schedule_post
type: io.kestra.plugin.meta.facebook.posts.Schedule
pageId: "{{ secret('FACEBOOK_PAGE_ID') }}"
accessToken: "{{ secret('FACEBOOK_ACCESS_TOKEN') }}"
message: "This post is scheduled for tomorrow!"
scheduledPublishTime: "{{ now() | dateAdd(1, 'DAYS') | date('yyyy-MM-dd HH:mm:ss') }}"
yaml
id: "schedule"
type: "io.kestra.plugin.meta.facebook.posts.Schedule"
- id: schedule_unix_post
type: io.kestra.plugin.meta.facebook.posts.Schedule
pageId: "{{ secret('FACEBOOK_PAGE_ID') }}"
accessToken: "{{ secret('FACEBOOK_ACCESS_TOKEN') }}"
message: "Scheduled post with timestamp"
scheduledPublishTime: "1735689600"
link: "https://example.com"
Properties
accessToken*Requiredstring
message*Requiredstring
pageId*Requiredstring
scheduledPublishTime*Requiredstring
apiBaseUrlstring
Default
https://graph.facebook.comapiVersionstring
Default
v24.0