Unity SDK

FB.Mobile.ShareDialogMode

Updated: Feb 13, 2018
Sets the type of dialog to use when sharing with FB.ShareLink.

Definition

public enum ShareDialogMode {
  AUTOMATIC = 0,
  NATIVE = 1,
  WEB = 2,
  FEED = 3,
}
Enumerator Description
AUTOMATIC
The SDK will choose which type of dialog to show.
NATIVE
Uses the dialog inside the native Facebook applications. Note this will fail if the native applications are not installed.
WEB
Opens the Facebook dialog in a webview.
FEED
Uses the Feed dialog.

Best Practices

Generally you will want to leave this set to the default value, which is AUTOMATIC.