How to get user browser?

0
I need to store and display the browser name/version which the user used during the last session.  How can I get user browser info? And how can I call a microflow to store it right after the user logs in?
asked
1 answers
0

You need to get the User-Agent header. There is a GetHeader method in the HTTP Commons module you can use to get this. You can then pass this value into the 51 Degrees module to try to decode it into something a bit more useful.

Note: The HTTP Commons module may need to be loaded into Mendix 7 first, and then upgraded. The 51 Degrees module uses older freely available data so may not have the latest browsers.

answered