Hi,

I am wondering if your using Blogger for your blog? I just checked
again and I was able to apply labels to blog posts and use Bloggers
API (it will generate feed data as JSON and JSONP formats) to get the
individual feeds for each label. Is this what you meant and are you
using Blogger?

If you are using Blogger then apply a label to your blog posts then
you can get the JSON/JSONP format this way (http://www.google.com/
support/blogger/bin/answer.py?hl=en&answer=53336)

http://MY-BLOG-URL/feeds/posts/default/-/MY-LABEL?alt=json-in-script&callback=foo&prettyprint=true

I added ?alt=json-in-script to get it in JSON format

I added &callback=foo to wrap it in a callback function (JSONP)

I also added &prettyprint=true to help see the JSON structure when
making a JSON parser for it. (then remove this param when launching to
get the compressed version)

Alternatively, if you prefer to use the AJAX Feeds API then you can
just use this format instead...

http://MYBLOG_URL/feeds/posts/default/-/MY-LABEL?alt=rss
(or Atom if you want the Atom feed over rss)

but you may be battling the caching issues of the Feed API and I don't
recall if the labeled feeds support PubSubHubBub like the main feed
does (I didn't see a hub listed in there) so you may need to try
something different like using it via feedburner if wanting to try the
Feed API v2 w/push (but I haven't personally tried this yet).

Cheers!
Vision Jinx

On Nov 4, 6:00 am, Gene <[email protected]> wrote:
> I own a blog and a website which are about similar (but not exactly
> the same) topics.
>
> I would like to use a reader (ideally AJAZ Feed API) to automatically
> put SOME of the topics on my website.
>
> Here is my question: Can I use labels with the AJAX Feed API to select
> the posts to use from my blog and put on my website?
>
> If so, how?
>
> If not, how can I do this using another reader?

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-ajax-search-api?hl=en.

Reply via email to