I have an application that sends multiple Twitter accounts, storing an array of usernames and passwords. Twitter recently updated its API, so I have to authenticate using OAuth instead of storing credentials. How can I do user authentication for multiple Twitter accounts in one process?
For example, I have a text box with a submit button. When the user clicks the submit button, I want the text field value to be sent to the user account user1, user2 and user3 Twitter. This means that they had to simultaneously log into 3 accounts at the same time, so that this single click worked correctly? How is this possible?
PS - I also do this for Facebook and is the same API / OAuth concept, so I tagged it also with the Facebook API.
source
share