How can we help you today?

Everything you need to install, configure OAuth credentials, schedule posts, and master MSVP across all 14 networks.

MSVP Developer Documentation and API Manual Illustration

1. Getting Started with MSVP

Maxx Social Video Poster (MSVP) installs like any standard WordPress plugin. Follow these simple steps to go live in under 5 minutes.

1

Install & Activate the Plugin

In your WordPress dashboard, navigate to Plugins → Add New → Upload Plugin. Select the downloaded `maxx-social-video-poster.zip` file and click Install Now, then Activate.

Pro Tip: Ensure your server meets PHP 7.4+ or 8.x and has the cURL and OpenSSL extensions enabled for OAuth requests.
2

Connect Social Accounts

Open MSVP → Accounts from your sidebar. Click the "Connect" button next to any platform (Facebook, Instagram, LinkedIn, X, TikTok, YouTube, etc.) and authorize the app.

3

Publish or Schedule Your First Post

Navigate to MSVP → Quick Post. Select target channels, type your caption or trigger AI generation, upload video/image media, and choose "Publish Now" or "Add to Queue".


2. Supported Platforms & Credentials

MSVP supports 14 major social networks with native API endpoints. Each platform has specific requirements and formats:

Platform Supported Formats Authentication Status
Facebook Pages Videos, Reels, Stories, Carousels, Links OAuth 2.0 (Page Access Token) Active
Instagram Pro Reels, Stories, Carousels, Photos Facebook Graph API / OAuth Active
Twitter / X Videos, Images, Threads, First Comments OAuth 2.0 / User Tokens Active
LinkedIn Articles, PDF Carousels, Videos, Links OAuth 2.0 (Company & Personal) Active
YouTube & Shorts Videos, Shorts, Privacy & Tags Google OAuth 2.0 Active
TikTok Direct Video Posting & Duet Controls TikTok for Developers OAuth Active

3. AI Caption Generator Configuration

Leverage large language models directly in your post composer to generate catchy titles, hashtag packages, and platform-tailored tone.

Supported Providers: OpenAI (GPT-4o, GPT-4o-mini), Anthropic (Claude 3.5 Sonnet), Google Gemini (1.5 Flash/Pro), and custom OpenAI-compatible proxies.

Go to MSVP → AI Settings, paste your API key, select your preferred default temperature and tone presets (Engaging, Professional, Humorous, Viral), and click Save Changes.


4. Schedule Builder & Evergreen Queues

Automate your publishing calendar with precision:

  • One-off Scheduled Posts: Pick the exact date and minute for release. Synchronized with your WordPress timezone.
  • Recurring Evergreen Queue: Set up time slots (e.g. Mon, Wed, Fri at 9:00 AM) and keep your best content cycling continuously.
  • First-Comment Automation: Automatically place links, tags, or disclosures in the first comment seconds after publish.

5. Troubleshooting & Diagnostics

Quick solutions to common configuration hurdles:

OAuth Token Expired: Social networks periodically expire access tokens. Go to MSVP → Accounts and click "Reconnect" to renew the token without losing schedules.
WordPress Cron Scheduling Delay: If posts are delayed, ensure WP-Cron is triggered regularly or configure a server-level cron job (`* * * * * curl -s https://maxxefy.com/wp-cron.php > /dev/null 2>&1`).

6. Developer REST API Reference

Integrate Maxxefy programmatic publishing with external webhooks, Zapier, Make, or custom applications using our REST API.

POST /wp-json/maxxefy/v1/posts/publish
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "platforms": ["facebook", "linkedin", "twitter-x"],
  "content": "Exciting new product launch! Check it out below 👇",
  "media_urls": ["https://maxxefy.com/wp-content/uploads/demo.mp4"],
  "schedule_time": "2026-09-01T10:00:00Z"
}