Learn how to connect your accounts to publish content across different platforms.
To connect your BlogSpot (Blogger) account, you'll need to obtain credentials from Google Cloud Console. Note that BlogSpot is the domain name, while Blogger is the official platform name.
https://www.blogger.com/blog/posts/1234567890123456789/posts/ is your Blog IDCopy this exact URL into your Google Cloud Console
Important: An API key alone only allows reading public data. To publish posts automatically, you must use OAuth 2.0 credentials which allow your application to act on your behalf after you grant permission.
Note: Keep your API key secure and never share it publicly. If compromised, revoke it immediately and generate a new one.
Connect your self-hosted WordPress site or WordPress.com paid plan using Application Passwords for secure authentication.
https://yoursite.com/wp-admin)https://yoursite.com/wp-admin/profile.phpxxxx xxxx xxxx xxxx xxxx xxxx)Requirements: Application Passwords require WordPress 5.6+ and HTTPS. If you don't see the "Application Passwords" section, your site may not meet these requirements.
WordPress.com Paid Plans: This method works for WordPress.com Personal, Premium, and Business plans. Free plans should use "WordPress.com (OAuth)" instead.
Connect your free WordPress.com site using OAuth 2.0 authentication. This method works for all WordPress.com plans including free accounts.
✅ Free Plan Compatible: This method works with WordPress.com free plans! No paid subscription required.
Multiple Sites: If you have multiple WordPress.com sites, the first site will be automatically selected. You can create separate connections for each site.
Note: Keep your Client ID and Client Secret secure. Never share them publicly or commit them to version control.
Connect your Medium account using a personal access token to publish articles directly.
⚠️ Important: Medium has discontinued new integration token generation. This connection only works if you already have an existing integration token. New users cannot obtain tokens for Medium integration.
Note: Keep your access token secure and never share it publicly. If compromised, revoke it immediately and generate a new one.
Connect to any platform that supports HTTP API endpoints for content publishing.
{
"endpoint_url": "https://api.example.com/posts",
"http_method": "POST",
"headers": {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
"payload_mapping": {
"title": "{{title}}",
"body": "{{content}}",
"tags": "{{tags}}",
"status": "published"
}
} Note: Keep your API key or token secure and never share it publicly. If compromised, revoke it immediately and generate a new one.
Need more help? Contact support or check the documentation for additional platform integrations.