countFeedContentByID
Object
countFeedContentByID
(
feedID
)
Returns the number of items of a given feedID.
- Parameters:
-
feedID <String>The ID of a feed
- Returns:
Object - counterObject, null if feedID doesn't exist
feedExist
Boolean
feedExist
(
feedID
)
Returns the information for a given feed
- Parameters:
-
feedID <String>The ID of a feed
- Returns:
Boolean - True if the feed exists, false otherwise
Deprecated prefere using feedExists instead
feedExists
Boolean
feedExists
(
feedID
)
Returns the information for a given feed
- Parameters:
-
feedID <String>The ID of a feed
- Returns:
Boolean - True if the feed exists, false otherwise
getAllFeedsID
Object
getAllFeedsID
(
)
Alias to getAllFeedsID
- Returns:
Object - feedID[] Array of feed id
getFeedByID
Object
getFeedByID
(
feedID
)
Returns given feed meta information in a structured object
- Parameters:
-
feedID <String>The ID of the feed you want to get information about
- Returns:
Object - feedObject, null if not found
getFeedContentByContentID
Object
getFeedContentByContentID
(
feedID
)
Returns the content (items) of a given feedID and contentID
- Parameters:
-
feedID <String>The ID of a feed
- Returns:
Object - contentObject
getFeedContentByID
Object
getFeedContentByID
(
feedID
)
Returns the content (items) of a given feedID
- Parameters:
-
feedID <String>The ID of a feed
- Returns:
Object - contentObject[]
getFeedDescription
String
getFeedDescription
(
feedID
)
Returns description for a given feedID
- Parameters:
-
feedID <String>The ID of the feed
- Returns:
String - The description of the feed
getFeeds
Object
getFeeds
(
)
Returns all feeds meta information in a structured array
- Returns:
Object - feedObject[]
getFeedsID
Array
getFeedsID
(
)
Returns an array of IDs of all subscribed feeds
- Returns:
Array - feedID[] The list of feeds IDs
getFeedTitle
String
getFeedTitle
(
feedID
)
Returns title for a given feedID
- Parameters:
-
feedID <String>The ID of the feed
- Returns:
String - The title of the feed
getUriByID
String
getUriByID
(
feedID
,
contentID
)
Returns an URI from an ID
- Parameters:
-
feedID <String>The ID of a feed -
contentID <String>The ID of a content
- Returns:
String - an URI, null if not found
getVisibleFeeds
Object
getVisibleFeeds
(
)
Returns all visible feeds meta informations
- Returns:
Object - feedObject
getVisibleFeedsID
Array
getVisibleFeedsID
(
)
Returns an array of IDs of all subscribed feeds that are not hidden
- Returns:
Array - feedID[]
init
Boolean
init
(
)
Initialize the podcast system; this function is no more required before using any other method of this API
- Returns:
Boolean - Result of the operation
Deprecated it is no more necessary to init the podcast system