How To Get Your Blogs Posts Using Blogger API

blogger
api
json
php

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:

Sanitization in java sript

14-03-2017 sanitization java script

Convert Time 24 hrs to 12 hrs format In javascript

12-03-2017 date javascript 12hrs convert

How to find Angular Errors

06-03-2017 errors angularjs exceptionHandler

Filter for change Date format (MM-dd-yyyy) in Angular Js

05-03-2017 mm-dd-yyyy date formats angular js

Send Mail in Node Js

21-02-2017 node js mail npm module