feeds,feedburner,com

Feeds,feedburner,com 【Full HD】

https://feedburner.com (Google Developers Blog).

In a development environment (like Salesforce Apex), you can retrieve and process these feeds using standard XML classes: feeds,feedburner,com

To use a FeedBurner feed in your application, you must point your parser to the XML endpoint. Most FeedBurner URLs follow the format: https://feeds.feedburner.com/[FeedName] . https://feedburner

// Example callout to a FeedBurner feed Http h = new Http(); HttpRequest req = new HttpRequest(); req.setEndpoint('http://feeds.feedburner.com/developerforce/developerelations'); req.setMethod('GET'); HttpResponse res = h.send(req); // Parse the XML response Dom.Document doc = res.getBodyDocument(); Dom.XmlNode root = doc.getRootElement(); Use code with caution. Copied to clipboard HttpRequest req = new HttpRequest()