Using Vimeo's Service

Using Vimeo's Service

The Evo Slider plugin allows you to display videos from Vimeo.

You can use the external option to load data from Vimeo.

Vimeo parameters:

Name Type Description
data String Set to "vimeo" when you want to load content from Vimeo.
source String Possible values are: "videos", "likes", "appears_in", "all_videos", "subscriptions", "group", "channel", or "album".
username String Vimeo user id.
groupname String The Vimeo group id.
channelname String The Vimeo channel id.
album_id String The Vimeo album id.
title_length Number Set the number of characters in the title.
desc_length Number Set the number of characters in the text description.

Examples:

Retrieve all of a user's recent videos:

external: {
    data: "vimeo",
    source: "videos",
    username: "vimeo_user_id"
    }                             
                

Retrieve videos a user likes:

external: {
    data: "vimeo",
    source: "likes",
    username: "vimeo_user_id"
    }                             
                

Retrieve videos that the user appears in:

external: {
    data: "vimeo",
    source: "appears_in",
    username: "vimeo_user_id"
    }                             
                

Retrieve videos that the user appears in and created:

external: {
    data: "vimeo",
    source: "all_videos",
    username: "vimeo_user_id"
    }                             
                

Retrieve videos the user is subscribed to:

external: {
    data: "vimeo",
    source: "subscriptions",
    username: "vimeo_user_id"
    }                             
                

Retrieve all of a group's recent videos:

external: {
    data: "vimeo",
    source: "group",
    groupname: "vimeo_group_id"
    }                             
                

Retrieve all of a channel's recent videos:

external: {
    data: "vimeo",
    source: "channel",
    channelname: "vimeo_channel_id"
    }                             
                

Retrieve all of an album videos:

external: {
    data: "vimeo",
    source: "album",
    album_id: "vimeo_album_id"
    }