Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!---
  2.     Assumes you're calling a WordPress feed
  3.  
  4.     This snippet requires the WordPress JSON feed plugin
  5.     Found here: http://wordpress.org/extend/plugins/json-feed/
  6.     The plugin provides a new WordPress feed option
  7.  
  8.     Provides a work around for Cross Site Scripting which is not allowed
  9.     in Javascript by allowing a "local" request for remote content
  10.  
  11. --->
  12. <cfhttp
  13.     url="http://path.to/feed/?feed=json"
  14.     method="get" resolveurl="yes" timeout="10"
  15. >
  16. </cfhttp>
  17. <cfcontent type="application/json">
  18. <cfoutput>#CFHTTP.FileContent#</cfoutput>