yongjoon
yongjoon

Reputation: 85

Can access Twitter with one specific user account?

I am going to create an app which introduces retail stores. I want to add each store's twitter account programmatically to have read-only access. All twitter questions are talking about access via setting app in device. Is it possible to access twitter not via accounts stored in device?

Thanks

Upvotes: 0

Views: 27

Answers (1)

DWRoelands
DWRoelands

Reputation: 4940

You'll need to do a couple of things.

  1. If each store has a separate account, then each store account has to authorize your application to access it's account.
  2. Once that is done, your application will need to retrieve and store the necessary OAuth tokens for each store.
  3. Finally, your application will need to authenticate with the correct store's tokens when it wants to access Twitter as that store.

Upvotes: 1

Related Questions