A big thanks. Made it fairly easy to implement OAuth on my site. Only
thing I did was add a line to parse the verify_credentials xml into an
assoc array
$authXml = $twAuthHandle->OAuthRequest('
https://twitter.com/
account/verify_credentials.xml', array(), 'POST');
> $_SESSION['some_key'] = $authXml;
> $twAuthInfo = new SimpleXMLElement($authXml);
Also, ended up storing the xml in the session (so I dont have to call
verify_credentials on page refresh).
--
Unmesh
http://sadakmap.com/twitter
http://twitter.com/sadakmap
> I'm working on convertinghttp://
github.com/jdp/twitterlibphpto use OAuth