Example #1
0
 /// <summary>
 /// Logs the user in with the requested publish permissions.
 /// </summary>
 /// <param name="permissions">A list of requested permissions.</param>
 /// <param name="callback">Callback to be called when request completes.</param>
 /// <exception cref="System.NotSupportedException">
 /// Thrown when called on a TV device.
 /// </exception>
 public static void LogInWithPublishPermissions(
     IEnumerable <string> permissions         = null,
     FacebookDelegate <ILoginResult> callback = null)
 {
     FacebookImpl.LogInWithPublishPermissions(permissions, callback);
 }
Example #2
0
 public static void LogInWithPublishPermissions(
     string scope = "",
     FacebookDelegate <ILoginResult> callback = null)
 {
     FacebookImpl.LogInWithPublishPermissions(scope, callback);
 }