没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > jslideshare |
jslideshare
|
1 | 0 | 24 |
贡献者 | 讨论 | 代码提交 |
JSlidesShare is a Java wrapper around the SlideShare API. It can be used for mashing up slides in your own Java Web application.
An exampleUsing JSlideShare is very easy. For example, if you need to get the code for embedding a specific presentation starting from its SlideShare id:
SlideShareAPI ssapi = new SlideShareAPIFactory(
API_KEY, // Your API key
SHARED_SECRET // Your shared secret
);
Slideshow slideshow = ssapi.getSlideshow("142806");
String embedCode = slideshow.getEmbedCode();Current featuresAt present you can:
Retrieve a slideshow by its id or url Retrieve the slideshows of an user Retrieve the slideshows with a specific tag Retrieve the slideshows from a group Upload of a new presentation UsageSimply download and uncompress one of the binary distribution files (tar.gz or zip). Then add to the classpath of your application the JSlideshare-*.jar and all the (few) dependecies JARs you'll find in the lib directory.
If you are using Maven in your project, you can add to your pom.xml the following repository:
parancoe-org-repository
Parancoe Repository for Maven
http://maven2.parancoe.org/repo
default
and dependency:
com.benfante
JSlideShare
0.5
compile