// 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
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] .
Append ?format=xml to ensure the server returns the raw XML document rather than a rendered HTML page. 2. Parsing Feed Data (Apex Example)
For modern web development, you can use RSS macros or pre-built readers to embed content. A simple RSS reader in NativeScript - Raymond Camden
In a development environment (like Salesforce Apex), you can retrieve and process these feeds using standard XML classes:
https://feedburner.com (Google Developers Blog).
Feeds,feedburner,com Apr 2026
// 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
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] . feeds,feedburner,com
Append ?format=xml to ensure the server returns the raw XML document rather than a rendered HTML page. 2. Parsing Feed Data (Apex Example) // Example callout to a FeedBurner feed Http
For modern web development, you can use RSS macros or pre-built readers to embed content. A simple RSS reader in NativeScript - Raymond Camden Append
In a development environment (like Salesforce Apex), you can retrieve and process these feeds using standard XML classes:
https://feedburner.com (Google Developers Blog).
Loaded All PostsNot found any postsVIEW ALLReadmoreReplyCancel replyDeleteByHomePAGESPOSTSView AllRECOMMENDED FOR YOULABELARCHIVESEARCHALL POSTSNot found any post match with your requestBack HomeSundayMondayTuesdayWednesdayThursdayFridaySaturdaySunMonTueWedThuFriSatJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberJanFebMarAprMayJunJulAugSepOctNovDecjust now1 minute ago$$1$$ minutes ago1 hour ago$$1$$ hours agoYesterday$$1$$ days ago$$1$$ weeks agomore than 5 weeks agoFollowersFollowTHIS PREMIUM CONTENT IS LOCKEDSTEP 1: Share to a social networkSTEP 2: Click the link on your social networkCopy All CodeSelect All CodeAll codes were copied to your clipboardCan not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copyTable of Content