Henrik-3 / unofficial-valorant-api

Unofficial VALORANT API using the VALORANT Ingame API
424 stars 18 forks source link

Issue with getMatchHistory. Recieved error 403. #43

Closed edtomb closed 2 years ago

edtomb commented 2 years ago

As the title says, my requests to /valorant/v3/matches/ recieve error 403: Forbidden This is my code: ` def getMatchHistory(name,tagline): body = httpRequest("https://api.henrikdev.xyz/valorant/v3/matches/na/"+name+"/"+tagline) print(body.json()) getMatchHistory("Han755","NA1")

Response: {'status': 403, 'message': 'Forbidden'}

` The request works on https://docs.henrikdev.xyz/valorant.html, but when copy the url and request it outside the website, I cant seem to get it to work.