We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently send entire userAgent as the envInfo.os value during /authenticate requests to Controller.
userAgent
envInfo.os
/authenticate
Instead, let's send only the last "portion" of the UA.
e.g., instead of:
5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 let's try to send only:
5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
Chrome/87.0.4280.88
The text was updated successfully, but these errors were encountered:
rentallect
No branches or pull requests
We currently send entire
userAgent
as theenvInfo.os
value during/authenticate
requests to Controller.Instead, let's send only the last "portion" of the UA.
e.g., instead of:
5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
let's try to send only:
Chrome/87.0.4280.88
The text was updated successfully, but these errors were encountered: