Fire Fist
Fire Fist

Reputation: 7060

How to integrate JSON API in Google blogspot with iOS?

I have experienced in JSON API for wordpress (JetPack) with iOS.

Now i have to write a iOS App for Blogspot.com website from Google.

My App is read only and i need to GET URL like JetPack Plugin.

Do i need to install Plugin like wordpress in Blogspot.com

I don't have any experienced in blogspot and i have no idea where i have to get start.

Could you please guide me the post for developing iOS App with JSON For Blogspot website?

Upvotes: 0

Views: 759

Answers (1)

Scott Leadley
Scott Leadley

Reputation: 366

If the part of the blog you're trying to get is blog posts, here's a generic URL for a JSON feed of posts using the Blogger API (see documentation):

http://www.blogger.com/feeds/blogID_goes_here/posts/default?alt=json&max-results=10

The blogID is in the URL of your blog control panel at blogger.com. Example:

https://www.blogger.com/blogger.g?blogID=blogID_is_here#overview


This assumes that blog is public. Retrieving data from private blogs requires authentication.

Upvotes: 2

Related Questions