Integration Examples

Ready-to-use integration examples

Get started quickly with our platform-specific integration examples and code snippets

Shopify Integration

```liquid ```

Installation

Install our Shopify app from the Shopify App Store and follow the setup wizard.

Product Sync

Automatically sync your product catalog with ShopVidify.

Video Player

Add our custom video player to your product pages.

WooCommerce Integration

```php // Shortcode example [shopvidify_video product_id="123" autoplay="true"] ```

Plugin Installation

Install and activate the ShopVidify plugin from WordPress plugin directory.

Product Tab Integration

Add video tab to product pages automatically.

Shortcode Usage

Use shortcodes to place videos anywhere on your site.

TikTok Shop Integration

```javascript ```

API Connection

Connect to TikTok Shop API using your seller credentials.

Video Publishing

Automatically publish videos to your TikTok Shop listings.

Performance Tracking

Monitor video performance in TikTok Shop analytics.

More Integration Examples

Examples for different use cases and platforms

Bulk Video Creation

// Process multiple products const products = await shopvidify.products.list(); const batch = await shopvidify.videos.createBatch({ products, template: 'default', options: { language: 'en' } });

Custom Player Integration

// Embed video player

Webhook Integration

// Handle webhook events app.post('/webhook', (req, res) => { const { event, videoId, status } = req.body; if (status === 'completed') { // Video is ready updateProduct(videoId); } });

SDK Examples

```javascript ```

Node.js SDK

Official Node.js SDK for ShopVidify API integration.

Python SDK

Official Python SDK for backend integration.

PHP SDK

Official PHP SDK for WordPress and other PHP platforms.