views:

14

answers:

1

I have an application where i want to integrate multiple buzz accounts to the one site. So that when i publish something on the site i want it to go to all the buzz accounts. Is this possible?? If possible then can anybody provide some example code.

+1  A: 

well, you can't do this in a single request. But you can certainly perform multiple calls to the Buzz API, one for each profile you want the content to be posted to. An example of creating a post using the Buzz PHP Library can be found here.

Alternately, you could simply setup the site as a connected site on each of the Google accounts, and let the content flow in that way. You could additionally use PubSubHubbub on your site to have the content arrive into Buzz in real-time if you want.

Will Norris