Skip to content

Platform Setup Guides ​

Complete developer documentation for configuring TendSocial's integrations with social media platforms. Each guide covers permissions, OAuth configuration, and callback URLs.

Quick Reference: All Callback URLs ​

Replace {API_BASE} with your API URL (e.g., https://api.tendsocial.com for production).

OAuth Callback URLs ​

PlatformCallback URL
Facebook Page{API_BASE}/api/social/accounts/callback/facebook_page
Instagram{API_BASE}/api/social/accounts/callback/instagram_business
Threads{API_BASE}/api/social/accounts/callback/threads
Facebook Login{API_BASE}/api/auth/facebook/callback
TikTok{API_BASE}/api/social/accounts/callback/tiktok_business
YouTube{API_BASE}/api/social/accounts/callback/youtube
Google Business{API_BASE}/api/social/accounts/callback/google_business
Twitter/X{API_BASE}/api/social/accounts/callback/twitter
LinkedIn{API_BASE}/api/social/accounts/callback/linkedin_page
Pinterest{API_BASE}/api/social/accounts/callback/pinterest
Reddit{API_BASE}/api/social/accounts/callback/reddit

Webhook Callback URLs ​

PurposeURL
Meta Deauthorize{API_BASE}/api/webhooks/meta/uninstall
Meta Data Deletion{API_BASE}/api/webhooks/meta/delete
Meta Deletion Status{API_BASE}/api/webhooks/meta/deletion-status/{code}

Platform Guides ​

PlatformGuideFeatures
MetaFacebook, Instagram, ThreadsPublishing, Inbox, Analytics, Social Login
TikTokTikTokVideo Publishing
GoogleYouTube, Google BusinessVideo Publishing, Business Posts
TwitterX (Twitter)Publishing, Analytics
LinkedInLinkedInPage Publishing
PinterestPinterestPin Publishing
BlogMedium, WordPress, GhostArticle Publishing
OtherReddit, Mastodon, BlueskyCommunity Publishing
TeamsSlack, Discord, TeamsNotification Channels

Production Callback URLs ​

For quick copy-paste into developer dashboards:

bash
# Meta Platforms (Facebook/Instagram/Threads)
https://api.tendsocial.com/api/social/accounts/callback/facebook_page
https://api.tendsocial.com/api/social/accounts/callback/instagram_business
https://api.tendsocial.com/api/social/accounts/callback/threads
https://api.tendsocial.com/api/auth/facebook/callback
https://api.tendsocial.com/api/webhooks/meta/uninstall
https://api.tendsocial.com/api/webhooks/meta/delete

# Google Platforms
https://api.tendsocial.com/api/social/accounts/callback/youtube
https://api.tendsocial.com/api/social/accounts/callback/google_business

# Other Platforms
https://api.tendsocial.com/api/social/accounts/callback/twitter
https://api.tendsocial.com/api/social/accounts/callback/linkedin_page
https://api.tendsocial.com/api/social/accounts/callback/pinterest
https://api.tendsocial.com/api/social/accounts/callback/tiktok_business
https://api.tendsocial.com/api/social/accounts/callback/reddit

Environment Variables ​

All platforms require credentials configured in your backend .env:

bash
# See each platform guide for specific variable names
OAUTH_REDIRECT_BASE_URL=https://api.tendsocial.com
FRONTEND_URL=https://app.tendsocial.com

TendSocial Documentation