joshim5
joshim5

Reputation: 2255

Search Blogger in Objective-C

I would like to implement a controller to search posts on a blog based in Blogger.

I have been using the GData API for other projects (generally for Youtube searches) but the GData API (especially that of Objective-C) severely lacks details explaining how to do this. (Please note that I only want results returned from a single individual blog!)

Any advice would be appreciated!

Thanks.

Upvotes: 0

Views: 116

Answers (1)

grobbins
grobbins

Reputation: 1564

Blogger support is now in the Google APIs Client Library for Objective-C. This replaces the older GData API.

The GTLQueryBlogger class includes the method blogger.posts.search (+queryForPostsSearchWithBlogId:)

Upvotes: 1

Related Questions