0
votes

im using facebook Unity SDK 7.8

i have problem with public_actions permission

public void FBlogin()
    {

        List<string> permissions = new List<string> ();
        permissions.Add ("public_profile");
        permissions.Add ("public_actions");

        FB.LogInWithReadPermissions (permissions, AuthCallBack);
    }

by using these permission when i logged in facebook using app it gives error invalid scope:public_actions .. can any any guide me please ?

waht should i do to access this permission (NOTE: i have permission in app review email email public_profile publish_actions user_friends)

1

1 Answers

0
votes

You are using the wrong method.

FB.LogInWithPublishPermissions should be used instead.

From the Facebook Unity SDK:

"Prompts the user to authorize your application for publish permissions using the Login Dialog appropriate to the platform."