function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Matt MetrosMatt Metros 

Retrieving XML from RSS feed and displaying that in lightning Component

    public static List<Dom.XMLNode> search(String remoteSiteURL, String query)
    {

        String url = remoteSiteURL + EncodingUtil.urlEncode(query, 'UTF-8');

        Http h = new Http();
        HttpRequest req = new HttpRequest();
        // url that returns the XML in the response body  
      

        req.setEndpoint(url);
        req.setMethod('GET');
        HttpResponse res = h.send(req);
        Dom.Document doc = res.getBodyDocument();


        Dom.XMLNode rss = doc.getRootElement();


}

I am not sure if I need to convert this into JSON.
Abdul KhatriAbdul Khatri
How the response look with 
res.getBody();
Isn't that JSON

You can just try the url in the browser and see what response you can get.