By using blogger api, we can get all our blogger posts. Every blog has one id, By using below url we can get the posts.

http://www.blogger.com/feeds/blogeer_id/posts/default

Replace blogger id in blogeer_id, In php simplexml_load_file() we can fetch the posts here is code.

<html>
<head>
<title>Blogger Api Example</title>
</head>
<body>
<?php
$blogeer_id = '1234567980481307770';
$URL = "http://www.blogger.com/feeds/".$blogeer_id."/posts/default";
$xmlData = simplexml_load_file($URL);
foreach($xmlData->entry as $postList){
echo '<div>';
echo '<h2>'.$postList->title.'</h2>'; // This is post title
echo '<p>'.$postList->content.'</p>'; // This is post content
echo '</div>';
echo '<hr>';
}
?>
</body>
</html>


You might also like:


How to use http-post request in node js
How to make an http request in node js
Get previous date from given date in javascript
Change datepicker display format
Get random strings from given string In javascript


Click Here to get more examples.