Is there a way to get a fb access token WITHOUT using the fb SDK and without user interaction. Just using a hardcoded user:password string, something like john:123456, i know about...
https://facebook.com/dialog/oauth?client_id=<app-id>&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=<permissions>&response_type=token
and then using something like htmlunit to get the token, but that process is way too heavy for a phone so i was thinking in something lighter... any ideas? any codes? any examples? i couldn't find anything on the net
Please don't throw me to "https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow/v2.1" or tell me "use the sdk is the best way"