Using Google+ / Picasa's Service

Using Google+ / Picasa's Service

The Evo Slider plugin allows you to display images from Google+ / Picasa service.

You can use the external option to load data from Google+ / Picasa.

Picasa parameters:

Name Type Description
data String Set to "picasa" when you want to load content from Picasa.
source String Possible values are: "recent" or "album".
user_id String Google+ / Picasa user id (the number in the URL when you visit your Google+ profile).
album_id String Album id. The last number in the URL when you visit an album.
tags String Includes all tags associated with the specified user, album, or photo.
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 photos:

external: {
    data: "picasa",
    source: "recent",
    user_id: "google+_user_id"
    }                             
                

Retrieve user photos by tags:

external: {
    data: "picasa",
    source: "recent",
    user_id: "google+_user_id",
    tags: "tag1,tag2,..."
    }                             
                

Retrieve user's album photos:

external: {
    data: "picasa",
    source: "album",
    user_id: "google+_user_id", 
    album_id: "album_id"
    }                             
                

Retrieve user's album photos by tags:

external: {
    data: "picasa",
    source: "album",
    user_id: "google+_user_id",
    album_id: "album_id"
    tags: "tag1,tag2,..."
    }