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

Get next date from given date in javascript

06-03-2017 date javascript next date

Filters for convert text to camel case in Angular Js

05-03-2017 angularjs camelcase filters

How to change background color and color to the text using javascript

27-02-2017 css javascript colors

Sample Validations in javascript

22-02-2017 validations javascript