I am having a web service which does server to server oauth exchange with facebook and twitter. My webserver pulls data on user behalf and also the client (browser jquery) pulls data when user is logged in.
My service does a basic authentication and gives an aggregation service on twitter and facebook.
Facebook provides oauth_token which can be used to access user feeds. Twitter needs oauth token, consumer key and consumer secret.
Is it correct and safe to send facebook auth_token to client over non SSL connection. I think tweetdeck does the same but I am not sure, as facebook does not check the requester domain on cross site request ?
Twitter consumer key and consumer secret can be exposed if sent to client. I again refer to tweetdeck (it uses a proxy for auth). Is this the best and simplest way?
Twitter does not support current logged in user check unlike facebook. So if my basic auth is done, there can be a mismatch of currently logged in user in twitter on the local machine ? I again refer to tweetdeck I have linked facebook and twitter to my tweetdeck. I login to twitter.com and facebook.com with some other ids and then go through tweetdeck basic authentication and I am able to access facebook, twitter which are different from my login to facebook, twitter. Is such a behavior acceptable ?
