Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
217 views
in Technique[技术] by (71.8m points)

javascript - 'Share link' from Navigator doesn't work on Messenger

This function works everywhere (WhatsApp, AirDrop, Messages) but doesn't work on Facebook Messenger.

If I enter a text e.g. "foo" while sending the link from iOS(iOS 14) from the website to the Messenger contact, only "foo" is sent to them, but not the link, although I clearly do the sharing via Navigator.share.

Are there any present bugs?

 inviteFromLink() {
      if (navigator.share) {
        navigator
          .share({
            title: "Title",
            text: "Join My Team!",
            url: "https://jointeam.com/"
          })
          .then(() => console.log("Successful share"))
          .catch(error => {
            // Chrome returns an error on cancelling
            // No need to display a warning on cancel...
            // this.displayWarning();
            console.log("Error sharing", error);
          });
      }
    },
question from:https://stackoverflow.com/questions/65889337/share-link-from-navigator-doesnt-work-on-messenger

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
inviteFromLink() { 
...}

I think there is an error in the method definition. try this way

function inviteFromLink () { ... }

or

inviteFromLink = () => { ... }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...