I have a website so how to get mac address of computer that access my website?
Please help me answer with code python, flask or jquery.
I have a website so how to get mac address of computer that access my website?
Please help me answer with code python, flask or jquery.
No, getting the clients MAC Address via JS is impossible, heres why:
MAC addresses in JavaScript
in general you can only access the MAC address of a machine on your LAN - if the computer you are talking about is outside of this then you probably can't
here's some python code:
import subprocess
p = subprocess.Popen('arp %s' % ip_address, stdout=subprocess.PIPE)
print p.stdout