I'm using Abraham's twitteroauth library. I've been trying to store the oauth tokens from the twitter accounts that signed up for my Twitter app in a database and retrieve them in PHP so I can tweet something on all of the accounts. Help?
Thank you!
You have a single $_SESSION['access_token'];
. If you want to deal with multiple accounts, then you will need to keep (and use) the access token for each of them.