MAC vendor lookup: Difference between revisions

m
added whitespace.
(→‎{{header|Wren}}: Tweaks to fit the task requirements more closely.)
m (added whitespace.)
Line 2:
[[Category:Network Tools]]
 
Every connected device around the world comes with a unique Media Access Control address, or a   [https://en.wikipedia.org/wiki/MAC_address MAC address]. A common task a network administrator may come across is being able to identify a network device's manufacturer when given only a MAC address.
 
A common task a network administrator may come across is being able to identify a network device's manufacturer when given only a MAC address.
;Basic Task:
The task is to interface with one (or numerous) APIs that exist on the internet and retrieve the device manufacturer based on a supplied MAC address.
 
 
A MAC address that does not return a valid result should return the String "N/A". A error related to the network connectivity or the API should return a null result.
;Basic Task:
The task is to interfaceInterface with one (or numerous) APIs that exist on the internet and retrieve the device manufacturer based on a supplied MAC address.
 
A MAC address that does not return a valid result should return the String "N/A". A  An error related to the network connectivity or the API should return a null result.
<br><br>