views:

75

answers:

2

The Google Wave documentation contains the Robot Events, but doesn't list what values will be put into the properties dictionary. Is this documented anywhere?

A: 

They are listed in API Reference documentation, in the waveapi.events module.

Here's the list:

WAVELET_BLIP_CREATED
WAVELET_BLIP_REMOVED
WAVELET_PARTICIPANTS_CHANGED
WAVELET_SELF_ADDED
WAVELET_SELF_REMOVED
WAVELET_TIMESTAMP_CHANGED
WAVELET_TITLE_CHANGED
WAVELET_VERSION_CHANGED
BLIP_CONTRIBUTORS_CHANGED
BLIP_DELETED
BLIP_SUBMITTED
BLIP_TIMESTAMP_CHANGED
BLIP_VERSION_CHANGED
DOCUMENT_CHANGED
FORM_BUTTON_CLICKED
intgr
As the poster said, these events are are listed in the Robot Events. His question was what values are put in the PROPERTIES dictionary for each event.
Evil Andy
D'oh, you are correct. I didn't read the question carefully enough. I don't know why he accepted my answer.
intgr
I don't know why I accepted either =P
Casebash
+2  A: 

I had the same question and found some hints in the following Google group thread: http://groups.google.com/group/google-wave-api/browse%5Fthread/thread/8d19dbcb6f2147cc

For now, I think the closest you can get to an answer to this question is Jason Salas' response: "the good news is that you can look in the logs that Google App Engine generates for your robot in your dashboard (choose Info from the drop-down menu under your application), and you can manually read the JSON string and get the "properties" content."

I guess we'll just have to wait until the API stabilizes and the documentation is more complete.

Tore Olsen