getAllPagedFeedLinks method: FeedFactory class
Syntax
getAllPagedFeedLinks(feed_ID, fromDTTM, allLanguages)
Description
Use this method to get all the paged feed URLs for the specified scheduled feed definition starting from the specified date and time. If allLanguages is set to True, then feed URLs corresponding to all languages are also provided.
This method returns an array of paged feed URLs; each URL represents a specific page (message segment) of the paged feed.
Note:
This method is supported for scheduled feeds only.
Parameters
| Parameter | Description |
|---|---|
|
feed_ID |
Specifies the ID for the scheduled feed definition as a string. |
|
fromDTTM |
Specifies the start date and time as a DateTime value. |
|
allLanguages |
A Boolean value that indicates whether to provide paged feed URLs for all languages. |
Returns
An array of string.
Example
import PTFP_FEED:FeedFactory;
Local PTFP_FEED:FeedFactory &feedFactory_inst;
Local datetime &fromDttm;
Local array of string &feedLinks;
&feedFactory_inst = create PTFP_FEED:FeedFactory();
&fromDttm = DateTimeValue("01/01/1900 00:00:00");
&feedLinks = &feedFactory_inst.getAllPagedFeedLinks("ADMN_USER_PROFILE", ⇒
&fromDttm, True);