Skip to Content
Menu
This question has been flagged
1 Reply
1715 Views

How to get request user's mac address details in odoo controller?

thanks in advance.

Avatar
Discard
Author Best Answer

mac address is not being sent in the request header. so this method only works in a local network.

first, install getmac package:

>> pip install getmac

from getmac import get_mac_address


ip_address = request.httprequest.environ['REMOTE_ADDR'] // get end user IP in controller
mac_address = get_mac_address(ip=ip_address) // get mac_address of given ip in network
Avatar
Discard
Related Posts Replies Views Activity
0
May 24
257
1
Aug 22
2494
4
Jun 24
666
1
Oct 23
1181
0
Feb 18
3405