Skip to main content
Configure domain and URL patterns for content and profile sharing, enabling deep linking into your app.

Configure Domain

Set your base URL for sharing.

URL Patterns

Define structures for posts, profiles, etc.

Share Links

Users can copy/share from the UI.

App Integration

Handle incoming deep links in your app.

Overview

Admins configure URL and deep link patterns for posts, live streams, profiles, and communities via the Social+ console. Once set up, users and managers can copy and share direct links for any of these items—using structures that match their brand. Social+ generates the links and makes them available for sharing, while our customer’s developers implement how these deep links are processed and which screens they open in their app.

Quick Start

1

Navigate

Console → Settings → Deep link and sharing.
2

Configure Domain

Set your base domain for sharing, ensure it matches your application’s domain.
3

Configure URL Patterns

Toggle to enable URL patterns for different content types.
4

Preview

Check your URL pattern with base domain in preview.
5

Save Changes

Confirm your changes and save.

URL Pattern Configuration

Enter your primary web domain. This will be the base for all generated web links. For example: https://myapp.com
Enter the path for web and mobile deep links. Use {postId} as a placeholder. For example: /posts/{postId}
Enter the path for web and mobile deep links. Use {livestreamId} as a placeholder. For example: /livestreams/{livestreamId}
Enter the path for web and mobile deep links. Use {communityId} as a placeholder. For example: /communities/{communityId}
Enter the path for web and mobile deep links. Use {userId} as a placeholder. For example: /users/{userId}

SDK & UIKit Integration

The URL patterns you configure in the console are stored in the system and accessed by the SDK and UIKit at runtime to generate shareable links.

SDK Integration

The SDK provides functions to fetch the link patterns stored in the system, allowing you to retrieve the configured URL patterns for each content type programmatically. Use the SDK to:
  • Retrieve domain URL and URL patterns for posts, livestreams, communities, and users
  • Integrate custom sharing functionality in your app
  • Build shareable links dynamically based on your configured patterns

UIKit Integration

UIKit leverages the SDK to obtain link patterns for each content type from the system. Share buttons appear automatically in the UI once valid link patterns are configured in the console. How UIKit sharing works:
1

Link Pattern Retrieval

UIKit fetches the configured URL patterns via SDK when content is displayed
2

Share Button Visibility

Share buttons only appear when valid link patterns exist in the system
3

Runtime Link Generation

When a user clicks the share button, the content ID is applied to the link pattern to generate a complete, shareable URL
4

Native Sharing

On native platforms (iOS/Android), clicking share triggers the OS’s native link sharing behavior
Important - URL Pattern Usage in UIKit: UIKit only uses the Post, Community, and User URL patterns. The Livestream URL pattern is not used in UIKit because livestreams created in UIKit are implemented as posts. When users share a livestream post, the ‘post’ content type pattern is used for link generation.

Best Practices

While Social+ generates links based on your patterns, you must implement in-app routing. Your app is responsible for handling incoming URLs, navigating to the correct content, and managing access for private items, like prompting non-members to log in.
Maintain a consistent and predictable URL structure across your application. This improves user experience and makes your links more shareable and understandable.
For links to private content (e.g., private communities, user-specific content), ensure your app checks user permissions. If the user doesn’t have access, redirect them to a login page or a “request access” screen instead of showing an error.

Troubleshooting

SymptomCauseResolution
Links don’t open the appApp not configured for deep linksEnsure your iOS (Universal Links) and Android (App Links) projects are correctly configured to handle your domain.
Links go to the wrong screenIncorrect routing logic in appReview your app’s deep link handling code to ensure it correctly parses the URL and navigates to the right destination.
404 errors on shared linksIncorrect domain or patternDouble-check the Domain URL and URL Patterns in the console settings to ensure they match your website’s structure.