跟踪网络共享 Api
Tracking Webshare Api
我想知道是否可以跟踪用户使用哪个选项与网络共享共享内容 api(例如,如果它是通过 WhatsApp 或 Facebook 共享的)。
提前致谢。
那是不可能的。请参阅 WebShare API 的 share
method:
的规范
The user agent MUST NOT allow the website to learn which share targets are available, or the identity of the chosen target.
返回的承诺将在用户分享内容时解析,但解析值只是 undefined
:
[...]
- Once the data has been successfully transmitted to the target, resolve
[[sharePromise]]
with undefined
.
只知道有没有分享,不知道分享给谁
我想知道是否可以跟踪用户使用哪个选项与网络共享共享内容 api(例如,如果它是通过 WhatsApp 或 Facebook 共享的)。
提前致谢。
那是不可能的。请参阅 WebShare API 的 share
method:
The user agent MUST NOT allow the website to learn which share targets are available, or the identity of the chosen target.
返回的承诺将在用户分享内容时解析,但解析值只是 undefined
:
[...]
- Once the data has been successfully transmitted to the target, resolve
[[sharePromise]]
withundefined
.
只知道有没有分享,不知道分享给谁