Download the PHP package tightenco/simplecast without Composer
On this page you can find all versions of the php package tightenco/simplecast. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tightenco/simplecast
More information about tightenco/simplecast
Files in tightenco/simplecast
Package simplecast
Short Description A Simplecast PHP SDK
License MIT
Informations about the package simplecast
Simplecast PHP SDK
A PHP SDK wrapper around the Simplecast.fm API.
Installation
Simplecast is available on Packagist as the tightenco/simplecast package.
Quickstart
Available methods
Each of these methods is available on the client (shown in the example above as $simplecast
).
podcasts
Shows a list of all of your podcasts that are hosted by Simplecast.
podcast
Shows full data for a single podcast given its podcast_id
.
podcastEpisodes
Lists all episodes of a podcast given its podcast_id
.
podcastEpisode
Shows the data for a podcast episode given its podcast_id
and episode_id
.
podcastEpisodeEmbed
Get the audio player embed code for a podcast episode given its podcast_id
and episode_id
.
podcastEpisodeStatistics
Lists the statistics for a podcast episode given its podcast_id
, episode_id
, and a period of time.
Options for timeframe
are: recent
, year
, all
, custom
. Note that custom
timeframes require two more parameters, start_date
and end_date
, both formatted as YYYY-MM-DD
.
podcastStatistics
Show statistics for the podcast.
podcastStatisticsOverall
Shows statistics for the podcast, scoped by time.
Options for timeframe
are: recent
, year
, all
, custom
. Note that custom
timeframes require two more parameters, start_date
and end_date
, both formatted as YYYY-MM-DD
.