<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: efe</title>
    <description>The latest articles on DEV Community by efe (@voxboy2).</description>
    <link>https://dev.to/voxboy2</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F429431%2F79e2dda8-fa4e-4d1c-8a07-e47e038353c4.jpeg</url>
      <title>DEV Community: efe</title>
      <link>https://dev.to/voxboy2</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/voxboy2"/>
    <language>en</language>
    <item>
      <title>How to accept online payments using Fincra</title>
      <dc:creator>efe</dc:creator>
      <pubDate>Sat, 21 May 2022 21:44:19 +0000</pubDate>
      <link>https://dev.to/voxboy2/how-to-accept-online-payments-using-fincra-4onc</link>
      <guid>https://dev.to/voxboy2/how-to-accept-online-payments-using-fincra-4onc</guid>
      <description>&lt;p&gt;Do you have a website? Do you want to accept online payments from your customers? If you answered yes to these questions, Fincra is the best option. Fincra also offers a variety of other services, such as &lt;a href="https://fincra.com/payouts"&gt;cross-currency payouts&lt;/a&gt; and the creation of &lt;a href="https://fincra.com/virtual-accounts"&gt;Virtual Accounts&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can create any payment flow for your specific use case by integrating Fincra APIs into your application. Please see &lt;a href="https://docs.fincra.com/docs"&gt;Fincra's documentation&lt;/a&gt; for instructions on how to integrate its various products and services.&lt;/p&gt;

&lt;p&gt;One of the ways Fincra allows you to collect payments from customers worldwide is through the checkout API.&lt;/p&gt;

&lt;p&gt;The checkout API is available in both &lt;a href="https://docs.fincra.com/docs/checkout-standard"&gt;standard&lt;/a&gt; and &lt;a href="https://docs.fincra.com/docs/checkout-redirect"&gt;redirect format&lt;/a&gt;; in this tutorial, we will be working with the standard method. The standard format involves you including a Javascript file in your application which will generate a modal that can be used to receive payments from your customers without redirecting them to another page.&lt;/p&gt;

&lt;p&gt;This tutorial will teach you how to integrate Fincra's checkout API into your NodeJS application. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;br&gt;
To follow along with this tutorial, we will need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Some knowledge of JavaScript and node js but not neccesary&lt;/li&gt;
&lt;li&gt;We also need a &lt;a href="https://fincra.com/"&gt;Fincra account &lt;/a&gt;to receive or accept payments from our application.&lt;/li&gt;
&lt;li&gt;Your full attention&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Step 1 - Create a directory and Install dependencies
&lt;/h2&gt;

&lt;p&gt;To begin, we'll need to create our project. You can use whichever IDE you choose. &lt;/p&gt;

&lt;p&gt;Create a folder and initialize npm by typing the following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir fincra-app

cd fincra-app

npm init -y

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 2 - Create Files
&lt;/h2&gt;

&lt;p&gt;At the root of our folder, we will make three files: index.js, index.html, and app.js.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;touch app.js index.js index.html

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your folder structure should look like this now.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgyed6yx946lsucss6xs8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgyed6yx946lsucss6xs8.png" alt="Image description" width="453" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3 - Install dependencies
&lt;/h2&gt;

&lt;p&gt;We will install several dependencies, such as express, dotenv, and axios, and a development dependency, such as nodemon, so that the server will automatically restart whenever we make changes.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install dotenv express 


npm install nodemon -D
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 4 - Create a Node.js server
&lt;/h2&gt;

&lt;p&gt;We can now create our Node.js server by adding the following snippets to our app.js, index.js in this order.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;In our app.js&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
fincra-app/app.js&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;require("dotenv").config();
const express = require("express");


const app = express();

app.use(express.json());

// your Logic here

module.exports = app;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;br&gt;&lt;br&gt;
&lt;code&gt;In our index.js&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const http = require("http");

const app = require("./app");

const server = http.createServer(app);


const { API_PORT } = process.env;
const port = process.env.PORT || API_PORT


server.listen(port, () =&amp;gt; {
    console.log(`Server running on port ${port}`);
});

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Our file needs environment variables. We'll create a .env file and add our variables before running our app.&lt;br&gt;
&lt;code&gt;In our .env&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;API_PORT=3000

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We will make changes to the scripts object in our package.json to look like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"scripts": {
    "start": "node index.js",
    "dev": "nodemon index.js",
    "test": "echo \"Error: no test specified\" &amp;amp;&amp;amp; exit 1"
  }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The code above has been added to our app.js and index.js files. We created an index.js file for our Node.js server and imported the app.js file with the routes we intended to use.&lt;/p&gt;

&lt;p&gt;Using the npm run command, we will execute npm dev in our terminal.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm run dev

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Everything should be working correctly now that the server is up and running.&lt;/p&gt;

&lt;h2&gt;
  
  
  step 5 - Create the Front end client
&lt;/h2&gt;

&lt;p&gt;Let's get the front-end client set up to receive customer payments.&lt;/p&gt;

&lt;p&gt;Update the index.html that we created earlier with the snippet below:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;

&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8" /&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&amp;gt;
    &amp;lt;title&amp;gt;Receive Payment With Fincra&amp;lt;/title&amp;gt;

    &amp;lt;style&amp;gt;
        input {
            display: block;
            margin: 10px 0;
            width: 300px;
            height: 30px;
            padding: 2px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        button {
            display: block;
            margin: 10px 0;
            color: white;
            width: 330px;
            height: 50px;
            padding: 2px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
            background-color: #844ef1;
            font-weight: bold;
        }

        form {
            left: 50%;
            top: 30%;
            position: absolute;
            transform: translate(-50%, -50%);
        }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
    &amp;lt;form class="form" id="payment-form"&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="name"&amp;gt; Name&amp;lt;/label&amp;gt;
            &amp;lt;input type="text" id="name" /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="amount"&amp;gt;Amount&amp;lt;/label&amp;gt;
            &amp;lt;input type="number" id="amount"/&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="email"&amp;gt;Email Address&amp;lt;/label&amp;gt;
            &amp;lt;input type="email" id="email" /&amp;gt;
        &amp;lt;/div&amp;gt;

        &amp;lt;div class="form-submit"&amp;gt;
            &amp;lt;button type="submit" onclick="payFincra()"&amp;gt; Pay with Fincra&amp;lt;/button&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
    &amp;lt;script src="https://unpkg.com/@fincra-engineering/checkout@1.10.0/dist/inline-test.min.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Notice in this example:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;code&gt;script&lt;/code&gt; tag is used to add the Fincra JavaScript. This is how you import Fincra to your code &lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;payFincra&lt;/strong&gt; onClick function is linked to the Pay button. This is what makes the Fincra payment modal show up.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's add the following javascript snippet to our HTML File&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script&amp;gt;
        const paymentForm = document.getElementById('payment-form');
        paymentForm.addEventListener("submit", payFincra, false);
        function payFincra(e) {
            e.preventDefault();
            Fincra.initialize({
                key: "your public key",
                amount: parseInt(document.getElementById("amount").value),
                reference: "your unique reference here"
                currency: "NGN",
                customer: {
                    name: document.getElementById("name").value,
                    email: document.getElementById("email").value,
                },

                onClose: function () {
                    alert("Transaction was not completed, window closed.");
                },
                onSuccess: function (data) {
                    const reference = data.reference;
                    alert("Payment complete! Reference: " + reference);
                },
            });
        }
    &amp;lt;/script&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Take note of the following:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;key&lt;/code&gt; field here takes your Fincra public key; you can get it by following the instructions &lt;a href="https://docs.fincra.com/docs/authentication#step-2"&gt;here&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;The &lt;code&gt;amount&lt;/code&gt; field here is the amount to be collected.&lt;/li&gt;
&lt;li&gt;To avoid duplicate attempts, it's best to generate a unique &lt;code&gt;reference&lt;/code&gt; from your system for each transaction.&lt;/li&gt;
&lt;li&gt;​​The &lt;code&gt;onClose&lt;/code&gt; method is called if the user closes the modal without completing payment.&lt;/li&gt;
&lt;li&gt;​​The &lt;code&gt;onSuccess&lt;/code&gt; method is called if the transaction is completed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is how our index.html file will now look.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;

&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8" /&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&amp;gt;
    &amp;lt;title&amp;gt;Receive Payment With Fincra&amp;lt;/title&amp;gt;

    &amp;lt;style&amp;gt;
        input {
            display: block;
            margin: 10px 0;
            width: 300px;
            height: 30px;
            padding: 2px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        button {
            display: block;
            margin: 10px 0;
            color: white;
            width: 330px;
            height: 50px;
            padding: 2px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
            background-color: #844ef1;
            font-weight: bold;
        }

        form {
            left: 50%;
            top: 30%;
            position: absolute;
            transform: translate(-50%, -50%);
        }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
    &amp;lt;form class="form" id="payment-form"&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="name"&amp;gt; Name&amp;lt;/label&amp;gt;
            &amp;lt;input type="text" id="name" /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="amount"&amp;gt;Amount&amp;lt;/label&amp;gt;
            &amp;lt;input type="number" id="amount"/&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="form-group"&amp;gt;
            &amp;lt;label for="email"&amp;gt;Email Address&amp;lt;/label&amp;gt;
            &amp;lt;input type="email" id="email" /&amp;gt;
        &amp;lt;/div&amp;gt;

        &amp;lt;div class="form-submit"&amp;gt;
            &amp;lt;button type="submit" onclick="payFincra()"&amp;gt; Pay with Fincra&amp;lt;/button&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
    &amp;lt;script src="https://unpkg.com/@fincra-engineering/checkout@1.10.0/dist/inline.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
        const paymentForm = document.getElementById('payment-form');
        paymentForm.addEventListener("submit", payFincra, false);
        function payFincra(e) {
            e.preventDefault();
            Fincra.initialize({
                key: "your public key",
                amount: parseInt(document.getElementById("amount").value),
                reference: "your unique reference here"
                currency: "NGN",
                customer: {
                    name: document.getElementById("name").value,
                    email: document.getElementById("email").value,
                },

                onClose: function () {
                    alert("Transaction was not completed, window closed.");
                },
                onSuccess: function (data) {
                    const reference = data.reference;
                    alert("Payment complete! Reference: " + reference);
                },
            });
        }
    &amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Using the following snippet, we can update our app.js to render the index.html file from the server-side:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;require("dotenv").config();
const express = require("express");
const axios = require('axios')

const path = require("path");

const app = express();

app.use(express.json());

// Add the route below
app.get("/pay", (req, res) =&amp;gt; {
    res.sendFile(path.join(__dirname + "/index.html")); //__dirname : It will resolve to your project folder.
});






module.exports = app;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let's see if it works by going to our browser and typing &lt;a href="http://localhost:4001/pay"&gt;http://localhost:4001/pay&lt;/a&gt;. When we click the Pay With Fincra button, we should see something like what's below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnl9m22r7d9e3fwmkxxlj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnl9m22r7d9e3fwmkxxlj.png" alt="Image description" width="800" height="601"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We will use the test card number: 4084 1278 8317 2787, expiry date: 09/22 and CVV: 123. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzju7v8j2uh03fw1op160.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzju7v8j2uh03fw1op160.png" alt="Image description" width="800" height="622"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After the payment is successful we will see a response on the browser&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3yrc3yz70fsvyrd4gok7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3yrc3yz70fsvyrd4gok7.png" alt="Image description" width="800" height="612"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 6 - Receive the webhook
&lt;/h2&gt;

&lt;p&gt;We can update our app.js file to receive the webhook response using the following snippet. In the portal, you may specify the URLs for your webhooks. Learn more about Fincra API webhooks by checking out the &lt;a href="https://docs.fincra.com/docs/collection-webhook"&gt;API documentation&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;app.post("/response", async (req, res) =&amp;gt; {
    const response = req.body.data;

    console.log(response)



})
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We should see something like the screenshot below in our log. Please go to the &lt;a href="https://docs.fincra.com/docs"&gt;API documentation&lt;/a&gt; to learn more about the response below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm5zr7g95kn8gym7tl783.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm5zr7g95kn8gym7tl783.png" alt="Image description" width="800" height="405"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 7 - Verify Payments
&lt;/h2&gt;

&lt;p&gt;Depending on the type of transaction, you can validate a webhook by querying the transaction by its reference to confirm its existence. In this case, we can send a get request either the get &lt;a href="https://documenter.getpostman.com/view/10721039/Tz5m7zMw#b2298b64-c288-4f24-8422-779a7a3ba2cd"&gt;collection by reference endpoint&lt;/a&gt; or &lt;a href="https://documenter.getpostman.com/view/10721039/Tz5m7zMw#2842e125-ee19-4867-97fb-3aef06d43bfc"&gt;get transaction by reference endpoint&lt;/a&gt; to confirm the status of the transaction.&lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
This tutorial taught us how to implement Fincra payment integration into our nodeJs application. &lt;/p&gt;

&lt;p&gt;References&lt;br&gt;
&lt;a href="https://fincra.com/"&gt;Fincra&lt;/a&gt;&lt;br&gt;
&lt;a href="https://docs.fincra.com/docs"&gt;Docs of Fincra&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
I'd love to connect with you on &lt;a href="https://twitter.com/isioefe"&gt;Twitter&lt;/a&gt; | &lt;a href="https://www.linkedin.com/in/efe-ebieroma-800512150/"&gt;LinkedIn&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;See you in my next blog article. Take care!!!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
