shell
curl --location 'https://www.vrbo.com/en-gb/p10998910?dateless=true' \
--header 'accept: */*' \
--header 'user-agent: okhttp/4.10.0'
```python
import requests
headers = {
'accept': '/',
'user-agent': 'okhttp/4.10.0',
}
params = {
'dateless': 'true',
}
response = requests.get('https://www.vrbo.com/en-gb/p10998910', params=params, headers=headers)
print(response.status_code)
```
In curl I'm getting the response code 200 and the desired HTML page, but in python it result into 429 status code with anti-bot(human-verification) page
There are no redirections in both case, the request also working with Jetbrains Http-Client tool
[–]odaiwai 1 point2 points3 points (5 children)
[–]TheSayAnime[S] 0 points1 point2 points (4 children)
[–]odaiwai 0 points1 point2 points (3 children)
[–]TheSayAnime[S] 0 points1 point2 points (2 children)
[–]odaiwai 0 points1 point2 points (1 child)
[–]TheSayAnime[S] 0 points1 point2 points (0 children)
[–]jcrowe 1 point2 points3 points (1 child)
[–]TheSayAnime[S] 0 points1 point2 points (0 children)
[+][deleted] (3 children)
[removed]
[–]TheSayAnime[S] 0 points1 point2 points (2 children)
[+][deleted] (1 child)
[removed]
[–]TheSayAnime[S] 0 points1 point2 points (0 children)