1.0.2 • Published 5 years ago

fbtorss v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

fbtorss

NPM version Downloads Build Status Coverage

Lib to convert facebook post feed to RSS. You will need facebook public content permission to use to for any public pages.

Installation

npm install fbtorss

Usage

     fbtorss
    .getRss({
      facebookPageUrl: `https://www.facebook.com/cnet`,
      access_token: `accessTokenFromFacebook`,
    }) // Returns a Promise!
    .then( async (items) => {
      console.log(items);
          return resolve();
    })
    .catch(err => {
      console.log(err);
    });

Output (simplified):

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
  <title>W3Schools Home Page</title>
  <link>https://www.w3schools.com</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>https://www.w3schools.com/xml/xml_rss.asp</link>
    <description>New RSS tutorial on W3Schools</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>https://www.w3schools.com/xml</link>
    <description>New XML tutorial on W3Schools</description>
  </item>
</channel>

</rss>

Working

This will call a request to graph facebook api via axios and then receive the data which in turn which convert them to RSS format.

Issues

This is a development so reported issues will be resolved.

Security contact information

To report a security vulnerability, please use the prajwolkc.com.np.

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago