Hi, I am trying to use the example login from facebook, the init seems to be ok but when i call:
public void FacebookLogin() {
FB.LogInWithReadPermissions(new List() { “public_profile”, “email”, “user_friends” }, AuthCallback);
}
from a button click (from a webgl build in a browser) i am getting a: MarshalDirectiveException: Cannot marshal type 'System.Collections.Generic.IEnumerable`1'.
It comes from the first parameter and I am at a loss as to how to resolve this.
Any help would be appreciated.