Google Wave 允许两个或多个参与者在一个 wave 中私下发言。当我的机器人添加到 wave 中时,我会识别 WAVELET_SELF_ADDED 事件并调用以下方法。然而,什么也没有发生。
我可以看出代码是由于日志中的 Debug 和 Info 语句而被执行的。 机器人在添加时没有启动私人 blip 有什么原因吗?
def start_private_wavelet(properties, context):
"""Start a private conversation between the robot and some participants."""
participants = []
participants.append('my-username@googlewave.com')
participants.append('my-robot@appspot.com')
logging.debug('Getting wave info')
root_wavelet = context.GetRootWavelet()
root_wave_id = root_wavelet.GetWaveId()
root_wave = context.GetWaveById(root_wave_id)
logging.debug('Creating private wave in %s' % root_wave_id)
private_wavelet = root_wave.CreateWavelet(participants)
message = private_wavelet.CreateBlip()
message.GetDocument().SetText("This is a private conversation...")
logging.debug('Private wave created')