Questions tagged [web-share]
63 questions
0
votes
1 answer
Tracking Webshare Api
I wanted to know if it is possible to track which option the user used to share something with the webshare api (for example if it was shared via WhatsApp or Facebook).
Thanks in advance.

Naminee
- 157
- 1
- 15
-1
votes
1 answer
Web Share Api not working on iosv safari as excepted
web share api not working in safari ios 16
here's my function and i want it to works only when clicking a button and pass the parameter i want to share
if (navigator.share) {
navigator
.share({
text: text,
url:…

mofarih-dev
- 55
- 1
- 7
-1
votes
1 answer
Sharing file types not supported by WebShare API
I've built a site with React and Node and I'm using WebShare API for sharing files, but I need to be able to share files that are not supported by the API (in this case pptx).
I thought about converting to PDF and then sharing it but the client…