Sets the type of dialog to use when sharing with FB.ShareLink.
public enum ShareDialogMode {
AUTOMATIC = 0,
NATIVE = 1,
WEB = 2,
FEED = 3,
}| Enumerator | Description |
|---|---|
| The SDK will choose which type of dialog to show. |
| Uses the dialog inside the native Facebook applications. Note this will fail if the native applications are not installed. |
| Opens the Facebook dialog in a webview. |
| Uses the Feed dialog. |
Generally you will want to leave this set to the default value, which is AUTOMATIC.