Manage Accounts

Manage Social Media Accounts

Connect and manage your social media accounts for posting.

Connect New Account
Facebook

Connect your Facebook account or business page to post updates, photos, and videos.

Connect Facebook
Instagram

Connect your Instagram Business account to post photos, videos, and reels.

Requires Instagram Business Account Connect Instagram
LinkedIn

Connect your LinkedIn profile or company page to share professional updates.

Connect LinkedIn
API Configuration Required:

Before connecting accounts, you need to set up API credentials in Web.config:

<appSettings>
    <!-- Facebook/Instagram -->
    <add key="FacebookAppId" value="YOUR_APP_ID" />
    <add key="FacebookAppSecret" value="YOUR_APP_SECRET" />
    
    <!-- LinkedIn -->
    <add key="LinkedInClientId" value="YOUR_CLIENT_ID" />
    <add key="LinkedInClientSecret" value="YOUR_CLIENT_SECRET" />
</appSettings>

Get credentials from: Facebook Developers | LinkedIn Developers

Connected Accounts
3 Connected
Platform Account Details Status Connected Token Status Actions
Facebook
My Facebook Page
Active
Jan 28, 2026
04:38 PM
No expiry
Instagram
My Instagram
Active
Jan 28, 2026
04:38 PM
No expiry
LinkedIn
My LinkedIn
Active
Jan 28, 2026
04:38 PM
No expiry
1

Facebook Accounts

1

Instagram Accounts

1

LinkedIn Accounts

3

Active Accounts

API Configuration Required

To connect real social media accounts, you need to configure API credentials in Web.config:

  1. Create apps on Facebook Developers and LinkedIn Developers
  2. Get your App ID/Secret and Client ID/Secret
  3. Add them to Web.config file
  4. Configure OAuth redirect URIs in your app settings

For testing: The connect buttons will work but will fail at the OAuth stage until you configure real API credentials.