public class SlideshowTemplate extends Object implements SlideshowOperations
| Modifier and Type | Field and Description |
|---|---|
static String |
BASE_URL |
static String |
DELETE_SLIDESHOW_URL |
static String |
EDIT_SLIDESHOW_URL |
static String |
GET_SLIDESHOW_URL |
static String |
GET_SLIDESHOWS_BY_GROUP_URL |
static String |
GET_SLIDESHOWS_BY_TAG_URL |
static String |
GET_SLIDESHOWS_BY_USER_URL |
static String |
SEARCH_SLIDESHOWS_URL |
static String |
UPLOAD_SLIDESHOW_URL |
| Constructor and Description |
|---|
SlideshowTemplate(org.springframework.web.client.RestOperations restOperations) |
| Modifier and Type | Method and Description |
|---|---|
String |
deleteSlideshow(String username,
String password,
String slideshowId)
Delete a slideshow.
|
String |
editSlideshow(String username,
String password,
String slideshowId,
String slideshowTitle,
String slideshowDescription,
Collection<String> slideshowTags,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Edit existing slideshow.
|
String |
editSlideshow(String username,
String password,
String slideshowId,
String slideshowTitle,
String slideshowDescription,
Collection<String> slideshowTags,
PrivacySetting privacySetting)
Edit existing slideshow with
PrivacySetting. |
Slideshow |
getSlideshow(String slideshowId,
String slideshowUrl)
Get slideshow from either slideshow id or url (detailed=true).
|
Slideshow |
getSlideshow(String slideshowId,
String slideshowUrl,
String username,
String password)
Get slideshow from either slideshow id or url (detailed=true).
|
Slideshow |
getSlideshow(String slideshowId,
String slideshowUrl,
String username,
String password,
boolean excludeTags,
boolean detailed,
boolean transcript)
Get slideshow from either slideshow id or url (detailed=true).
|
Slideshow |
getSlideshowById(String slideshowId)
Get slideshow by slideshow_id (detailed=true).
|
Slideshow |
getSlideshowById(String slideshowId,
String username,
String password)
Get slideshow by slideshow_id (detailed=true).
|
Slideshow |
getSlideshowById(String slideshowId,
String username,
String password,
boolean excludeTags,
boolean detailed,
boolean transcript)
Get slideshow by slideshow_id
|
Slideshow |
getSlideshowByUrl(String slideshowUrl)
Get slideshow by slideshow url (detailed=true).
|
Slideshow |
getSlideshowByUrl(String slideshowUrl,
String username,
String password)
Get slideshow by slideshow url (detailed=true).
|
Slideshow |
getSlideshowByUrl(String slideshowUrl,
String username,
String password,
boolean excludeTags,
boolean detailed,
boolean transcript)
Get slideshow by slideshow url.
|
GetSlideshowsResponse |
getSlideshowsByGroup(String groupName,
int limit)
Get slideshows by group (detailed=true).
|
GetSlideshowsResponse |
getSlideshowsByGroup(String groupName,
int limit,
int offset,
boolean detailed)
Get slideshows by group.
|
GetSlideshowsResponse |
getSlideshowsByTag(String tag,
int limit)
Get slideshows by tag (detailed=true).
|
GetSlideshowsResponse |
getSlideshowsByTag(String tag,
int limit,
int offset,
boolean detailed)
Get slideshows by tag.
|
GetSlideshowsResponse |
getSlideshowsByUser(String usernameFor,
int limit)
Get slideshows by username (detailed=true).
|
GetSlideshowsResponse |
getSlideshowsByUser(String usernameFor,
String username,
String password,
int limit)
Get slideshows by username (detailed=true).
|
GetSlideshowsResponse |
getSlideshowsByUser(String usernameFor,
String username,
String password,
int limit,
int offset,
boolean detailed,
boolean getUnconverted)
Get slideshows by username.
|
SearchSlideshowsResponse |
searchSlideshows(String q)
Returns slideshows according to the search criteria
Use default page which is set to 1
Use default itemsPerPage which is set to 12
|
SearchSlideshowsResponse |
searchSlideshows(String q,
int page)
Returns slideshows according to the search criteria
Use default itemsPerPage which is set to 12
|
SearchSlideshowsResponse |
searchSlideshows(String q,
int page,
int itemsPerPage)
Returns slideshows according to the search criteria
|
SearchSlideshowsResponse |
searchSlideshows(String q,
int page,
int itemsPerPage,
SearchOptions.Language lang,
SearchOptions.Sort sort,
SearchOptions.UploadDate uploadDate,
SearchOptions.SearchType searchType,
boolean downloadableOnly,
SearchOptions.FileFormat fileformat,
SearchOptions.FileType fileType,
boolean isCC,
boolean isCCAdapt,
boolean isCCCommercial,
boolean detailed,
boolean transcript)
Returns slideshows according to the search criteria
|
String |
uploadSlideshowFromContent(String username,
String password,
byte[] slideshowContent,
String filename,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from its content.
|
String |
uploadSlideshowFromContent(String username,
String password,
String slideshowContent,
String filename,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from its content.
|
String |
uploadSlideshowFromContent(String username,
String password,
String slideshowContent,
String filename,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
PrivacySetting privacySetting)
Create a new slideshow from its content with
PrivacySetting. |
String |
uploadSlideshowFromFile(String username,
String password,
File slideshowFile,
String title,
String description)
Create a new slideshow from local file.
|
String |
uploadSlideshowFromFile(String username,
String password,
File slideshowFile,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from local file.
|
String |
uploadSlideshowFromFile(String username,
String password,
File slideshowFile,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
PrivacySetting privacySetting)
Create a new slideshow from local file with
PrivacySetting. |
String |
uploadSlideshowFromFile(String username,
String password,
String slideshowFilePath,
String title,
String description,
Collection<String> tags,
boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from local file path.
|
String |
uploadSlideshowFromUrl(String username,
String password,
String uploadUrl,
String title,
String description,
Collection<String> tags,
Boolean makeSrcPublic)
Create a new slideshow from url.
|
String |
uploadSlideshowFromUrl(String username,
String password,
String uploadUrl,
String title,
String description,
Collection<String> tags,
Boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from url.
|
String |
uploadSlideshowFromUrl(String username,
String password,
String uploadUrl,
String title,
String description,
Collection<String> tags,
Boolean makeSrcPublic,
PrivacySetting privacySetting)
Create a new slideshow from url with
PrivacySetting. |
String |
uploadSlideshowResource(String username,
String password,
org.springframework.core.io.Resource slideshowResource,
String slideshowTitle,
String slideshowDescription,
Collection<String> slideshowTags,
boolean makeSrcPublic,
Boolean makeSlideshowPrivate,
Boolean generateSecretUrl,
Boolean allowEmbeds,
Boolean shareWithContacts)
Create a new slideshow from
Resource. |
public static final String BASE_URL
public static final String GET_SLIDESHOW_URL
public static final String GET_SLIDESHOWS_BY_TAG_URL
public static final String GET_SLIDESHOWS_BY_GROUP_URL
public static final String GET_SLIDESHOWS_BY_USER_URL
public static final String SEARCH_SLIDESHOWS_URL
public static final String EDIT_SLIDESHOW_URL
public static final String DELETE_SLIDESHOW_URL
public static final String UPLOAD_SLIDESHOW_URL
public SlideshowTemplate(org.springframework.web.client.RestOperations restOperations)
public Slideshow getSlideshowById(String slideshowId)
SlideshowOperationsgetSlideshowById in interface SlideshowOperationsslideshowId - slideshow idpublic Slideshow getSlideshowById(String slideshowId, String username, String password)
SlideshowOperationsgetSlideshowById in interface SlideshowOperationsslideshowId - slideshow idusername - username of the requesting userpassword - password of the requesting userpublic Slideshow getSlideshowById(String slideshowId, String username, String password, boolean excludeTags, boolean detailed, boolean transcript)
SlideshowOperationsgetSlideshowById in interface SlideshowOperationsslideshowId - slideshow idusername - username of the requesting userpassword - password of the requesting userexcludeTags - exclude tags if set to truedetailed - get detailed info if set to truetranscript - get transcript if set to truepublic Slideshow getSlideshowByUrl(String slideshowUrl)
SlideshowOperationsgetSlideshowByUrl in interface SlideshowOperationsslideshowUrl - URL of the slideshow to be fetchedpublic Slideshow getSlideshowByUrl(String slideshowUrl, String username, String password)
SlideshowOperationsgetSlideshowByUrl in interface SlideshowOperationsslideshowUrl - URL of the slideshow to be fetchedusername - username of the requesting userpassword - password of the requesting userpublic Slideshow getSlideshowByUrl(String slideshowUrl, String username, String password, boolean excludeTags, boolean detailed, boolean transcript)
SlideshowOperationsgetSlideshowByUrl in interface SlideshowOperationsslideshowUrl - URL of the slideshow to be fetchedusername - username of the requesting userpassword - password of the requesting userexcludeTags - exclude tags if set to truedetailed - get detailed info if set to truetranscript - get transcript if set to truepublic Slideshow getSlideshow(String slideshowId, String slideshowUrl)
SlideshowOperationsgetSlideshow in interface SlideshowOperationsslideshowId - slideshow idslideshowUrl - URL of the slideshow to be fetchedpublic Slideshow getSlideshow(String slideshowId, String slideshowUrl, String username, String password)
SlideshowOperationsgetSlideshow in interface SlideshowOperationsslideshowId - slideshow idslideshowUrl - URL of the slideshow to be fetchedusername - username of the requesting userpassword - password of the requesting userpublic Slideshow getSlideshow(String slideshowId, String slideshowUrl, String username, String password, boolean excludeTags, boolean detailed, boolean transcript)
SlideshowOperationsgetSlideshow in interface SlideshowOperationsslideshowId - slideshow idslideshowUrl - URL of the slideshow to be fetchedusername - username of the requesting userpassword - password of the requesting userexcludeTags - exclude tags if set to truedetailed - get detailed info if set to truetranscript - get transcript if set to truepublic GetSlideshowsResponse getSlideshowsByTag(String tag, int limit)
SlideshowOperationsgetSlideshowsByTag in interface SlideshowOperationstag - a tag namelimit - number of items to returnpublic GetSlideshowsResponse getSlideshowsByTag(String tag, int limit, int offset, boolean detailed)
SlideshowOperationsgetSlideshowsByTag in interface SlideshowOperationstag - a tag namelimit - number of items to returnoffset - offsetdetailed - get detailed info if set to truepublic GetSlideshowsResponse getSlideshowsByGroup(String groupName, int limit)
SlideshowOperationsgetSlideshowsByGroup in interface SlideshowOperationsgroupName - a gropu namelimit - number of items to returnpublic GetSlideshowsResponse getSlideshowsByGroup(String groupName, int limit, int offset, boolean detailed)
SlideshowOperationsgetSlideshowsByGroup in interface SlideshowOperationsgroupName - a group namelimit - number of items to returnoffset - offsetdetailed - get detailed info if set to truepublic GetSlideshowsResponse getSlideshowsByUser(String usernameFor, int limit)
SlideshowOperationsgetSlideshowsByUser in interface SlideshowOperationsusernameFor - username of owner of slideshowslimit - number of items to returnpublic GetSlideshowsResponse getSlideshowsByUser(String usernameFor, String username, String password, int limit)
SlideshowOperationsgetSlideshowsByUser in interface SlideshowOperationsusernameFor - username of owner of slideshowsusername - username of the requesting userpassword - password of the requesting userlimit - number of items to returnpublic GetSlideshowsResponse getSlideshowsByUser(String usernameFor, String username, String password, int limit, int offset, boolean detailed, boolean getUnconverted)
SlideshowOperationsgetSlideshowsByUser in interface SlideshowOperationsusernameFor - username of owner of slideshowsusername - username of the requesting userpassword - password of the requesting userlimit - number of items to returnoffset - offsetdetailed - get detailed info if set to truegetUnconverted - include unconverted slideshows if set to truepublic SearchSlideshowsResponse searchSlideshows(String q)
SlideshowOperationssearchSlideshows in interface SlideshowOperationsq - search keywordpublic SearchSlideshowsResponse searchSlideshows(String q, int page)
SlideshowOperationssearchSlideshows in interface SlideshowOperationsq - search keywordpage - page number of the resultspublic SearchSlideshowsResponse searchSlideshows(String q, int page, int itemsPerPage)
SlideshowOperationssearchSlideshows in interface SlideshowOperationsq - search keywordpage - page number of the resultsitemsPerPage - number of results to return per page,public SearchSlideshowsResponse searchSlideshows(String q, int page, int itemsPerPage, SearchOptions.Language lang, SearchOptions.Sort sort, SearchOptions.UploadDate uploadDate, SearchOptions.SearchType searchType, boolean downloadableOnly, SearchOptions.FileFormat fileformat, SearchOptions.FileType fileType, boolean isCC, boolean isCCAdapt, boolean isCCCommercial, boolean detailed, boolean transcript)
SlideshowOperationssearchSlideshows in interface SlideshowOperationsq - search keywordpage - page number of the resultsitemsPerPage - number of results to return per page,lang - language of slideshows (default is English, 'en')sort - sort order (default is relevance)uploadDate - time period you want to restrict your search to (default is 'any')searchType - what type of search (default is text search)downloadableOnly - slideshows that are available to download (default is 'all')fileformat - file format to search for (default is 'all')fileType - file type to search for (default is 'all')isCC - retrieve results under the Creative Commons license if set to true (default is false)isCCAdapt - retrieve results under the Creative Commons that allow adaption, modification if set to
true (default is false)isCCCommercial - retrieve results under the Commercial Creative Commons license (default is false)detailed - get detailed info if set to true (default is false)transcript - get transcript if set to true (default is false)public String editSlideshow(String username, String password, String slideshowId, String slideshowTitle, String slideshowDescription, Collection<String> slideshowTags, PrivacySetting privacySetting)
SlideshowOperationsPrivacySetting.editSlideshow in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowId - slideshow idslideshowTitle - slidesow titleslideshowDescription - slideshow descriptionslideshowTags - slideshow tags (comma separated list of tags)privacySetting - privacy setting object (can be null)public String editSlideshow(String username, String password, String slideshowId, String slideshowTitle, String slideshowDescription, Collection<String> slideshowTags, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationseditSlideshow in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowId - slideshow idslideshowTitle - slidesow titleslideshowDescription - slideshow descriptionslideshowTags - slideshow tags (comma separated list of tags)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String deleteSlideshow(String username, String password, String slideshowId)
SlideshowOperationsdeleteSlideshow in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowId - slideshow id to deletepublic String uploadSlideshowFromUrl(String username, String password, String uploadUrl, String title, String description, Collection<String> tags, Boolean makeSrcPublic)
SlideshowOperationsuploadSlideshowFromUrl in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting useruploadUrl - url pointing to the presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)public String uploadSlideshowFromUrl(String username, String password, String uploadUrl, String title, String description, Collection<String> tags, Boolean makeSrcPublic, PrivacySetting privacySetting)
SlideshowOperationsPrivacySetting.
This method requires extra permissions on your slideshare account.uploadSlideshowFromUrl in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting useruploadUrl - url pointing to the presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)privacySetting - privacy setting object (can be null)public String uploadSlideshowFromUrl(String username, String password, String uploadUrl, String title, String description, Collection<String> tags, Boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsuploadSlideshowFromUrl in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting useruploadUrl - url pointing to the presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String uploadSlideshowFromFile(String username, String password, File slideshowFile, String title, String description)
SlideshowOperationsuploadSlideshowFromFile in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowFile - local presentation filetitle - slideshow titledescription - slideshow descriptionpublic String uploadSlideshowFromFile(String username, String password, File slideshowFile, String title, String description, Collection<String> tags, boolean makeSrcPublic, PrivacySetting privacySetting)
SlideshowOperationsPrivacySetting.
This method requires extra permissions on your slideshare account.uploadSlideshowFromFile in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowFile - local presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)privacySetting - privacy setting object (can be null)public String uploadSlideshowFromFile(String username, String password, File slideshowFile, String title, String description, Collection<String> tags, boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsuploadSlideshowFromFile in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowFile - local presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String uploadSlideshowFromFile(String username, String password, String slideshowFilePath, String title, String description, Collection<String> tags, boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsuploadSlideshowFromFile in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowFilePath - path to the local presentation filetitle - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String uploadSlideshowFromContent(String username, String password, String slideshowContent, String filename, String title, String description, Collection<String> tags, boolean makeSrcPublic, PrivacySetting privacySetting)
SlideshowOperationsPrivacySetting.uploadSlideshowFromContent in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowContent - slideshow contentfilename - filename (used to detect file type from extension)title - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)privacySetting - privacy setting object (can be null)public String uploadSlideshowFromContent(String username, String password, String slideshowContent, String filename, String title, String description, Collection<String> tags, boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsuploadSlideshowFromContent in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowContent - slideshow contentfilename - filename (used to detect file type from extension)title - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String uploadSlideshowFromContent(String username, String password, byte[] slideshowContent, String filename, String title, String description, Collection<String> tags, boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsuploadSlideshowFromContent in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowContent - slideshow contentfilename - filename (used to detect file type from extension)title - slideshow titledescription - slideshow descriptiontags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)public String uploadSlideshowResource(String username, String password, org.springframework.core.io.Resource slideshowResource, String slideshowTitle, String slideshowDescription, Collection<String> slideshowTags, boolean makeSrcPublic, Boolean makeSlideshowPrivate, Boolean generateSecretUrl, Boolean allowEmbeds, Boolean shareWithContacts)
SlideshowOperationsResource.uploadSlideshowResource in interface SlideshowOperationsusername - username of the requesting userpassword - password of the requesting userslideshowResource - slideshow resourceslideshowTitle - slideshow titleslideshowDescription - slideshow descriptionslideshowTags - slideshow tagsmakeSrcPublic - allow user to download uploaded file if set to true. (default is true) (can be null)makeSlideshowPrivate - make slideshow private if set to true. If false is set, slideshow becomes public.
(can be null)generateSecretUrl - generate a secret URL for the slideshow if set to true.
'makeSlideshowPrivate' needs to be true. (can be null)allowEmbeds - allow web site to embed the slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)shareWithContacts - allow contacts can be viewed on slideshow if set to true
'makeSlideshowPrivate' needs to be true. (can be null)Copyright © 2015. All rights reserved.