- Home /
Get Facebook Profile Picture Permissions From Dev Token
I am trying to get a user's facebook profile picture, To do this, I call this function to log in:
public static void FacebookLogin(Action<ILoginResult> onLogInRecieved)
{
var permissions = new List<string>() { "public_profile", "email", "user_friends" };
FB.LogInWithReadPermissions(permissions, onLogIn);
Inst.onLoggedInAction += onLogInRecieved;
}
where the relevant details are the permissions which include "public_profile" which should allow access to a user's profile picture. When I click the button that calls this code in the Unity editor, I am given a pop up that takes me to a web page where I can generate an access token. However, the permissions I get from the generated access token are only for my name and avatar (some cartoony picture) not my profile picture. How can I generate a token that allows me to get my profile picture?
Your answer
Follow this Question
Related Questions
Not getting Facebook publish permissions. 1 Answer
read phone status and identity - after adding facebook SDK 0 Answers
Facebook Unity SDK login permission request pop up for authorized user 0 Answers
Getting Game Approved with Facebook publish_actions permission ? 0 Answers
Facebook permissions 1 Answer