from xmlrpclib import ServerProxy
s = ServerProxy("http://api.jaiku.com/xmlrpc")
s.presence.send({"user": "Yourname", "personalkey": "Yourpersonalkey", "message": "The text you want to send", "icon": "301 and up", "location": "Wherever"})
Your personal key is at http://api.jaiku.com. If I had a moment I'd fire up Xcode and wrap this puppy up into an interface. Maybe tonight.
Sweet. I am modding this Twitter/Jaiku cross-posting Quicksilver script (http://log.pb30.com/post/689390) to support icons. I guess a random one will have to do for now. A test run with a hard coded 301 worked .
6 comments so far
Here's the python code (based on http://devku.org)
from xmlrpclib import ServerProxy s = ServerProxy("http://api.jaiku.com/xmlrpc") s.presence.send({"user": "Yourname", "personalkey": "Yourpersonalkey", "message": "The text you want to send", "icon": "301 and up", "location": "Wherever"})
Your personal key is at http://api.jaiku.com. If I had a moment I'd fire up Xcode and wrap this puppy up into an interface. Maybe tonight.
2 years, 7 months ago by ChiefTWiT
That will be awesome! Please let us know when you have it!
2 years, 7 months ago by Vesper
Great. Much needed. I am looking forward to it.
2 years, 7 months ago by willbost
Sweet. I am modding this Twitter/Jaiku cross-posting Quicksilver script (http://log.pb30.com/post/689390) to support icons. I guess a random one will have to do for now. A test run with a hard coded 301 worked .
2 years, 7 months ago by bwana
Does anyone know of a mapping document of the current icons to their numbers? I don't want to have to manually test them all :(
2 years, 7 months ago by bwana
Nevermind, View Source gives me everything :) :)
2 years, 7 months ago by bwana