Instagram Configuration
Overview
Instagram configuration allows users to post, create stories, and reels.
Config Example
export interface InstagramConfig {
isEnabled: boolean;
post?: boolean;
reel?: boolean;
story?: boolean;
}
Example Usage
{
"instagram": {
"isEnabled": true,
"post": true,
"reel": true,
"story": false
}
}
Last updated on