Text and meaning of the error
Such error can occur when working with the HTTP request activity and using the GET
method with some websites. The error message can look like this:
Too Many Requests
Some websites require specific User-Agent. The HTTP request activity by default uses User-Agent axios/0.26.1
.
Solution
To solve this error, set a new User-Agent. For example, you can do it by adding additional headers of the HTTP request:
{
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.77'
}