I would like to log into the Facebook app from an android shell using am start commands.
am start -n com.facebook.katana/.LoginActivity
That command brings up the facebook login screen. But how do I fill out the email and password fields and submit it as a one line command from android shell?
I've tried the following....
am start -n com.facebook.katana/.LoginActivity -e email my@email.com -e password mypassword
To no avail, I probably don't understand the usage of extras correctly though.
Additionally, If i'm already logged in these commands work perfectly
am start -a android.intent.action.VIEW -d fb://notifications
am start -a android.intent.action.VIEW -d fb://messages
am start -a android.intent.action.VIEW -d fb://events
But I would like to allow multiple people to access their Facebook accounts using my process.