0.0
No commit activity in last 3 years
No release in over 3 years
Wrapper for the Slideshare API - NOTE: This is a fork of github.com/nixmc/Super-Mega-Slideshare
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Super Mega Slideshare

A ruby wrapper for Slideshare.

Example

require 'rubygems'
require 'slideshare'
Slideshare.configure do |config|
	config.api_key = "XYZ123"
	config.api_secret = "123XYZ"
end

begin
	Slideshare.get_slideshow(:slideshow_url => "http://www.slideshare.net/lolcats/lolcatz-2-minute-break-1", :detailed => 1)
rescue Slideshare::SlideshareError => e
	puts e
end

begin
	Slideshare.get_slideshows_by_tag(:tag => "lolcats")
rescue Slideshare::SlideshareError => e
	puts e
end

Contributors

Written by Edd Parris for NixonMcInnes, large parts copied with great thanks from the Twitter gem (https://github.com/jnunemaker/twitter)