Hello All,
I have django based web app. I have kept TIME_ZONE = 'UTC' but still it is redirecting to google.co.in. How can I prevent to redirect. Below code is totally running in server side. Can I change settings such way that google always check server location not user/client location. Is this possible?
Below is my code: def fnNewsDetails(**params): URL = 'https://www.google.com/#q=rio+tinto&tbm=nws' response = requests.get(URL) return response.content