Pull RSS Feeds From Facebook Page

前端 未结 3 2088
挽巷
挽巷 2021-02-06 11:53

I need help to pull RSS feeds from a facebook page I\'m using the following code but it keeps giving me an error :

string url = 
    \"https://www.facebook.com/f         


        
3条回答
  •  滥情空心
    2021-02-06 12:31

    It works when using Gregorys code above if you change the feed format to atom10 instead of rss20. Change the url:

    string url = 
    "https://www.facebook.com/feeds/page.php?id=40796308305&format=atom10";
    

提交回复
热议问题