I am using the robots api. I have a wave id and wavelet id, and my app's email is added to the wave. How can I simply get the wave (or wavelet's) contents using the python api?
Asked
Active
Viewed 81 times
1 Answers
0
Based on the example here:
def OnWaveletSelfAdded(event, wavelet):
for id in wavelet.blips:
blip = wavelet.blips[id]
logging.debug(blip.text)

Drew Sears
- 12,812
- 1
- 32
- 41
-
Thanks, How about by using the Active Robots API? – Drew LeSueur Jun 05 '10 at 20:55
-
1wavelet = robot.fetch_wavelet(wave_id, wavelet_id) – Drew Sears Jun 05 '10 at 22:27
-
That comment was the anwer. Thank you. But I am getting a 502 http error IOError: HttpError 502 – Drew LeSueur Jun 06 '10 at 02:55