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:

How to search text in string using php ?

29-10-2017 php search string search

Use java script file client side and server side at a time in node js

30-07-2017 node js include call javascript

How to insert bulk information into database in single query execution

18-03-2017 insert sql bulk database

How to make an http request in node js

14-03-2017 http module node js

How to get drop down value when drop down change using javascript

27-02-2017 onchange events dropdown javascript functions