Time zone detection
# 🤝help
a
Can you tell me if it is possible to detect the current timezone of a user? Automatically, without having to ask him.
const currentTime = luxon.DateTime.now(); user.userTimezone = currentTime.zoneName;
It works only in Webchat integration.
In Telegram / WhatsApp it will always be UTC 😦
f
It's not possible because bots/integrations run on the server side so they don't have access to the user's environment.
a
Ok, will do it using a webhook intergration.
35 Views