Social Interactions

Enable social features to enhance player engagement by allowing them to share, join communities, invite friends, and more.

Share

Use this to allow players to share game content or achievements on social media platforms.

bridge.social.isShareSupported

Check if the share functionality is supported on the platform.

let options = { }

switch (bridge.platform.id) {
    case 'vk':
        options = {
            link: 'YOUR_LINK'
        }
        break
}

bridge.social.share(options)
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Join Community

Enable players to join social communities related to your game, enhancing engagement and loyalty.

bridge.social.isJoinCommunitySupported

Check if the join community functionality is supported on the platform.

let options = { }

switch (bridge.platform.id) {
    case 'vk':
        options = {
            groupId: YOUR_GROUP_ID
        }
        break
    case 'ok':
        options = {
            groupId: YOUR_GROUP_ID
        }
        break
}

bridge.social.joinCommunity(options)
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Invite Friends

Allow players to invite their friends to play the game, helping to grow your player base organically.

bridge.social.isInviteFriendsSupported

Check if the invite friends functionality is supported on the platform.

let options = { }

switch (bridge.platform.id) {
    case 'ok':
        options = {
            text: 'Hello World!'
        }
        break
}

bridge.social.inviteFriends(options)
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Create Post

Use this to let players create posts about their achievements or updates directly from the game.

bridge.social.isCreatePostSupported

Check if the create post functionality is supported on the platform.

let options = { }

switch (bridge.platform.id) {
    case 'vk':
        options = {
            message: 'Hello world!',
            attachments: 'photo-199747461_457239629'
        }
        break
    case 'ok':
        options = {
            media: [
                {
                    'type': 'text',
                    'text': 'Hello World!'
                },
                {
                    'type': 'link',
                    'url': 'https://apiok.ru'
                },
                {
                    'type': 'poll',
                    'question': 'Do you like our API?',
                    'answers': [
                        { 'text': 'Yes' },
                        { 'text': 'No' }
                    ],
                    'options': 'SingleChoice,AnonymousVoting'
                }
            ]
        }
        break
}

bridge.social.createPost(options)
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Add to Favorites

Allow players to bookmark your game for easy access in the future.

bridge.social.isAddToFavoritesSupported

Check if the add to favorites functionality is supported on the platform.

bridge.social.addToFavorites()
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Add to Home Screen

Enable players to add a shortcut to your game on their home screen for quick access.

bridge.social.isAddToHomeScreenSupported

Check if the add to home screen functionality is supported on the platform.

bridge.social.addToHomeScreen()
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Rate Game

Encourage players to rate your game, providing valuable feedback and improving visibility.

bridge.social.isRateSupported

Check if the rate game functionality is supported on the platform.

bridge.social.rate()
    .then(() => {
        // success
    })
    .catch(error => {
        // error
    })

Allow players to follow links to external websites, such as your game’s official site or related resources.

bridge.social.isExternalLinksAllowed

Check if external links are allowed on the platform.

Last updated