उपयोगकर्ता जिस वेबसाइट पर है उसे शेयर करने की अनुमति कैसे दें

उपयोगकर्ता को जिस वेबसाइट पर वे हैं उसे शेयर करने देना एक सामान्य वेब ऐप्लिकेशन पैटर्न है जो आपको कई समाचार साइटों, ब्लॉग या शॉपिंग साइटों पर मिल सकता है. लिंक करना, वेब की सबसे अहम खूबियों में से एक है. उम्मीद की जा रही है कि अब सोशल नेटवर्किंग साइटों पर शेयर किए गए लिंक देखने वाले या चैट मैसेज से या ईमेल से पुराने स्कूल के उपयोगकर्ताओं से ट्रैफ़िक हासिल करने वाले उपयोगकर्ताओं से ट्रैफ़िक हासिल किया जा सकता है.

आधुनिक तरीका

Web Share API का इस्तेमाल करना

Web Share API की मदद से उपयोगकर्ता, उस पेज के यूआरएल जैसा डेटा शेयर कर सकते हैं जिस पर वे मौजूद हैं. साथ ही, इसका इस्तेमाल शीर्षक और जानकारी देने वाले टेक्स्ट के साथ भी किया जा सकता है. Web Share API का navigator.share() वाला तरीका, डिवाइस के नेटिव शेयरिंग मैकेनिज़्म को शुरू करता है. यह एक प्रॉमिस देता है और शेयर किए जाने वाले डेटा के साथ एक ही तर्क देता है. आपको ये वैल्यू दिख सकती हैं:

  • url: शेयर किए जाने वाले यूआरएल को दिखाने वाली स्ट्रिंग.
  • text: शेयर किए जाने वाले टेक्स्ट को दिखाने वाली स्ट्रिंग.
  • title: शेयर किए जाने वाले टाइटल को दिखाने वाली स्ट्रिंग. ब्राउज़र इसे अनदेखा कर सकता है.

ब्राउज़र सहायता

  • 89
  • 93
  • 78 जीबी में से

सोर्स

क्लासिक तरीका

किसी सोशल नेटवर्किंग साइट के शेयर इंटेंट का इस्तेमाल करना

फ़िलहाल, सभी ब्राउज़र Web Share API की सुविधा नहीं देते. इस तरह फ़ॉलबैक आपकी टारगेट ऑडियंस की सबसे लोकप्रिय सोशल नेटवर्किंग साइटों के साथ इंटिग्रेट हो जाता है. इसका एक लोकप्रिय उदाहरण Twitter है, जिसका वेब इंटेंट यूआरएल टेक्स्ट और यूआरएल को शेयर करने की अनुमति देता है. आम तौर पर, इस तरीके में यूआरएल तैयार करके उसे ब्राउज़र में खोला जाता है.

यूज़र इंटरफ़ेस (यूआई) के बारे में जानकारी

ऑपरेटिंग सिस्टम वेंडर के यूज़र इंटरफ़ेस (यूआई) के दिशा-निर्देशों के मुताबिक, प्लैटफ़ॉर्म पर शेयर करने वाले आइकॉन का सम्मान करना अच्छा रहेगा.

  • Windows में:
  • सेब:
  • Android और दूसरे ऑपरेटिंग सिस्टम:

प्रोग्रेसिव एन्हैंसमेंट

नीचे दिया गया स्निपेट, जब Web Share API के साथ काम करता है, तब वह उसका इस्तेमाल करता है. इसके बाद, वह Twitter के वेब इंटेंट यूआरएल पर वापस चला जाता है.

// DOM references
const button = document.querySelector('button');
const icon = button.querySelector('.icon');
const canonical = document.querySelector('link[rel="canonical"]');

// Find out if the user is on a device made by Apple.
const IS_MAC = /Mac|iPhone/.test(navigator.platform);
// Find out if the user is on a Windows device.
const IS_WINDOWS = /Win/.test(navigator.platform);
// For Apple devices or Windows, use the platform-specific share icon.
icon.classList.add(`share${IS_MAC? 'mac' : (IS_WINDOWS? 'windows' : '')}`);

button.addEventListener('click', async () => {
  // Title and text are identical, since the title may actually be ignored.
  const title = document.title;
  const text = document.title;
  // Use the canonical URL, if it exists, else, the current location.
  const url = canonical?.href || location.href;

  // Feature detection to see if the Web Share API is supported.
  if ('share' in navigator) {
    try {
      await navigator.share({
        url,
        text,
        title,
      });
      return;
    } catch (err) {
      // If the user cancels, an `AbortError` is thrown.
      if (err.name !== "AbortError") {
        console.error(err.name, err.message);
      }
    }
  }
  // Fallback to use Twitter's Web Intent URL.
  // (https://developer.twitter.com/en/docs/twitter-for-websites/tweet-button/guides/web-intent)
  const shareURL = new URL('https://twitter.com/intent/tweet');
  const params = new URLSearchParams();
  params.append('text', text);
  params.append('url', url);
  shareURL.search = params;
  window.open(shareURL, '_blank', 'popup,noreferrer,noopener');
});

इसके बारे में और पढ़ें

डेमो

एचटीएमएल

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>How to let the user share the website they are on</title>
    <link rel="stylesheet" href="style.css" />
    <!-- TODO: Devsite - Removed inline handlers -->
    <!-- <script src="script.js" defer></script> -->
  </head>
  <body>
    <h1>How to let the user share the website they are on</h1>
    <p>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin at libero
      eget ante congue molestie. Integer varius enim leo. Duis est nisi,
      ullamcorper et posuere eu, mattis sed lorem. Lorem ipsum dolor sit amet,
      consectetur adipiscing elit. In at suscipit erat, et sollicitudin lorem.
    </p>
    <img src="https://placekitten.com/400/300" width=400 height=300>
    <p>
      In euismod ornare scelerisque. Nunc imperdiet augue ac porttitor
      porttitor. Pellentesque habitant morbi tristique senectus et netus et
      malesuada fames ac turpis egestas. Curabitur eget pretium elit, et
      interdum quam.
    </p>
    <hr />
    <button type="button"><span class="icon"></span>Share</button>
  </body>
</html>

सीएसएस


        :root {
  color-scheme: dark light;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 1rem;
  font-family: system-ui, sans-serif;
}

img,
video {
  height: auto;
  max-width: 100%;
}

button {
  display: flex;
}

button .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: 1em;
}

@media (prefers-color-scheme: dark) {
  button .icon {
    filter: invert();
  }
}

.share {
  background-image: url('share.svg');
}

.sharemac {
  background-image: url('sharemac.svg');
}
        

JS


        // DOM references
const button = document.querySelector('button');
const icon = button.querySelector('.icon');
const canonical = document.querySelector('link[rel="canonical"]');

// Find out if the user is on a device made by Apple.
const IS_MAC = /Mac|iPhone/.test(navigator.platform);
// Find out if the user is on a Windows device.
const IS_WINDOWS = /Win/.test(navigator.platform);
// For Apple devices or Windows, use the platform-specific share icon.
icon.classList.add(`share${IS_MAC? 'mac' : (IS_WINDOWS? 'windows' : '')}`);

button.addEventListener('click', async () => {
  // Title and text are identical, since the title may actually be ignored.
  const title = document.title;
  const text = document.title;
  // Use the canonical URL, if it exists, else, the current location.
  const url = canonical?.href || location.href;

  // Feature detection to see if the Web Share API is supported.
  if ('share' in navigator) {
    try {
      await navigator.share({
        url,
        text,
        title,
      });
      return;
    } catch (err) {
      // If the user cancels, an `AbortError` is thrown.
      if (err.name !== "AbortError") {
        console.error(err.name, err.message);
      }
    }
  }
  // Fallback to use Twitter's Web Intent URL.
  // (https://developer.twitter.com/en/docs/twitter-for-websites/tweet-button/guides/web-intent)
  const shareURL = new URL('https://twitter.com/intent/tweet');
  const params = new URLSearchParams();
  params.append('text', text);
  params.append('url', url);
  shareURL.search = params;
  window.open(shareURL, '_blank', 'popup,noreferrer,noopener');
});