I want to send tweets from my users' twitter accounts using cronjob that signed up or connected to my site using twitter. But the problem is
Oauth keys are valid only while session is active, so storing oauth keys info of user's in database is useless (Am i right about this ? Not really sure, please correct me if i am wrong.)
So when the session ends, oauth key gets useless, and user needs to get new oauth keys.
And my question is : is there a way to do what i had written above ? Sending tweets from my users's twitter accounts.
I am newbie about this Twitter api thing, and also newbie on PHP. So i would like to get the "logic" of the way doing this or maybe some examples about it.