first off, I apologize if this is in the wrong place.. after posting it twice before- here, and in "script request".. I realized its best here..
I'm not asking for a script, just some pointers on how Twitter handles a login..
the idea I have is to have my eggie "post a tweet" each time the broadcast server comes online and then tweet the show name.. or, if the show changes, then display the show name (if new) again..
I have all the code in place except the actual "login" procedure itself
I have looked at the megahal script thats being featured all over here.. (NICE WORK btw!) but thats far too advanced for what I need at this time.. I just need a simple "announcer" so the bot can tweet that shows have begun...
Heres what I have puked up in the last few mins so far, note: this is only a "partal" script- the "logic" of the thing is allready handled somewhere else; but I post this so that you have a better understanding of what I need

please note- I JUST spewed this out moments ago.. so this is EXTREMELY basic (and I'm sure its full of errors/will NOT work in this state) but here it is anyways:
Code: Select all
## Update Twitter ##
if {(Csh06 != "$DetIA $DetSA $Show")&&(![catch {
exec curl --basic --user "$user:$pass" --data-ascii \
"status=$Show" http://twitter.com/statuses/update.json >& /dev/null &
};])} {
set Cs$h06 "$DetIA $DetSA $Show";
putlog "Twitter Updated!";
};
... a work in progress!
-DjZ-

