I have an app in which I query /me/friends using the Facebook JS SDK. To do so, I need an access_token which I get using FB.getLoginStatus().
If someone visits with 3rd party cookies disabled, FB.getLoginStatus() returns an unknown status (by design), and no access_token. How do others handle this? Is there another way to get an oauth token through the JS SDK? Do you just not load that feature, or do you fall back to a server-side method? Thanks!