Reputation: 2255
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
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