beginner here. I have a vuejs app that I need to connect to AD and render diffrenet things based on the user permissions I think its cold AD query my app runs only in the browser and only calls external api when it need data. I was told you can not use ldap from browser to connect to ad and make ad query cuz the browser is limited to http/https. so how should I go about this?
can you make an ad query with http (from browser)? do I need to move my app to something like nuxt in order for it to be hosted in a server that makes the query and then render the app accordingly? (something like nodejs) or should I query the AD from a nodejs server in ldap and then make a rest api that works in http that the browser can reach?
sorry if this is a stupid question