RSS Feed on a Marketo Landing Page | Community
Skip to main content
Tara_Rowe
Level 5
September 17, 2020
Question

RSS Feed on a Marketo Landing Page

  • September 17, 2020
  • 1 reply
  • 1857 views

Hello, 

 

Looking to see if it is possible to have an RSS feed of our blog posts on a Marketo Landing Page. Not finding much on the community on this other than for emails dated back in 2013. Any updates?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

SanfordWhiteman
Level 10
September 17, 2020

A Marketo LP can bring in any external data you want (just like any web page!).

 

No, it can't bring in external data via the Marketo server (server-to-server communication). But it can certainly bring in data from the browser side, by fetching it from an external service.

 

But that external service needs to accept cross-origin requests (CORS). An RSS feed, like most services designed for non-browser contexts, typically doesn't by default. But it could easily be added, your web team just needs to add the HTTP header

 

Access-Control-Allow-Origin: pages.example.com

 

to the feed response. (Where pages.example.com is your LP domain.) 

 

Then you can pull the data in and format it any which way you want.