I am trying to webscrape Fliff (a sportsbook) to get all of the matchups and odds. For sportsbooks that I have been successful at scraping, I have gotten a link for all of the data in the Inspect Element -> Network and then doing a requests.get(url).json() in python. I have found the link I need for Fliff, and I can view the contents in the 'Preview' section in Chrome, but when I open the link in a new tab, I get the message 'nothing to see here move along', which I assume is a 403 error. The same happens when I try to access it with python.
Fliff is only accessible from a mobile device, so I have tried switching the User agent to a mobile device, but it still doesn't work. Interestingly, I can access the data from the link Firefox. Any suggestions?
