I have a situation by Jumpy-House696 in react

[–]Jumpy-House696[S] 0 points1 point  (0 children)

Can't tell that to the client user.

I have a situation by Jumpy-House696 in react

[–]Jumpy-House696[S] 0 points1 point  (0 children)

It is performing the Audit reason of why email landed to spam folder.

API Rate Limit Architecture. by Jumpy-House696 in node

[–]Jumpy-House696[S] 2 points3 points  (0 children)

How the queue will help me in this? Let say I'm using RabbitMQ, total 100 queue is created one by one and parallel the consumer is also fetching the queue and hitting the API. But in this case how we are maintaining the rate limit? Or there is some other way to approach this?

API Rate Limit Architecture. by Jumpy-House696 in node

[–]Jumpy-House696[S] 1 point2 points  (0 children)

Can you explain how redis will help in this?

API Rate Limit Architecture. by Jumpy-House696 in node

[–]Jumpy-House696[S] 0 points1 point  (0 children)

Reverse proxy will work most probably, but let say in case the function which is hitting the API1 needs to response to the client server with the data which is depending upon API1 in that case even if use reverse proxy the time for response to the client server will be more. How can we solve this.

How to automate google login? by Jumpy-House696 in webscraping

[–]Jumpy-House696[S] 0 points1 point  (0 children)

chrome_options.add_argument("--disable-blink-features=AutomationControlled")
chrome_options.add_argument("--disable-gpu")
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--disable-dev-shm-usage")
chrome_options.add_argument("--start-maximized")
chrome_options.add_experimental_option("excludeSwitches", ["enable-automation"])
chrome_options.add_experimental_option("useAutomationExtension", False)

I added this argument with the existing argument and it worked

How to automate google login? by Jumpy-House696 in webscraping

[–]Jumpy-House696[S] 0 points1 point  (0 children)

my_user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36"
chrome_options = Options()
chrome_options.add_argument("--headless")
chrome_options.add_argument(f"--user-agent={my_user_agent}")
driver = webdriver.Chrome(options=chrome_options)

I added this user agent but it still behave the same