Skip to content
This repository was archived by the owner on Apr 2, 2021. It is now read-only.

[Fix] Update README.md #846

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update README.md
sooakim committed Mar 15, 2021
commit 3f3cd8e32b263c35aab8a502f2b67256baaf0001
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -274,7 +274,9 @@ shareLinkWithShareDialog() {
}
```

#### Share Photos
#### Share Photos (Removed from `react-native-fbsdk` 1.1.2)

* Use [Share dialogs](#Sharing) instead.

See [SharePhotoContent](/js/models/FBSharePhotoContent.js) and [SharePhoto](/js/models/FBSharePhoto.js) to refer other options.

@@ -295,7 +297,9 @@ const sharePhotoContent = {
ShareDialog.show(tmp.state.sharePhotoContent);
```

#### Share Videos
#### Share Videos (Removed from `react-native-fbsdk` 1.1.2)

* Use [Share dialogs](#Sharing) instead.

See [ShareVideoContent](/js/models/FBShareVideoContent.js) and [ShareVideo](/js/models/FBShareVideo.js) to refer other options.

@@ -316,7 +320,9 @@ const shareVideoContent = {
ShareDialog.show(tmp.state.shareVideoContent);
```

#### Share API
#### Share API (Removed from `react-native-fbsdk` 1.1.2)

* Use [Share dialogs](#Sharing) instead.

Your app must have the `publish_actions` permission approved to share through the share API. You should prefer to use the Share Dialogs for an easier and more consistent experience.