admin管理员组

文章数量:1351169

I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.

if (navigator.share) {
    navigator.share({
        title: 'Lot Quality Report',
        text: 'Lot Link -',
        url: ''
    })
        .then(() => console.log('Successful share')) //this is for sucess
            .catch((error) => console.log('Error sharing', error));
  } else {
    console.log('Share not supported on this browser, do it the old way.');
    alert('Share not supported on this browser, do it the old way.');
}

This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.

I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.

if (navigator.share) {
    navigator.share({
        title: 'Lot Quality Report',
        text: 'Lot Link -',
        url: 'https://www.google.'
    })
        .then(() => console.log('Successful share')) //this is for sucess
            .catch((error) => console.log('Error sharing', error));
  } else {
    console.log('Share not supported on this browser, do it the old way.');
    alert('Share not supported on this browser, do it the old way.');
}

This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.

Share Improve this question edited Nov 1, 2022 at 6:57 naman verma asked Oct 31, 2022 at 5:06 naman vermanaman verma 1351 silver badge14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

I have found the answer, in mac os we need to change the settings of browser . Url - https://winaero./chrome-to-get-web-share-api-support-on-desktop/

Click on - chrome://flags/#web-share >> enable >> relaunch browser

本文标签: javascriptNavigator share not working in chrome desktop in mac os any alternativeStack Overflow