Access Denied - Ethereum Ropsten

Hi Guys,

I have found a solution. If you face this error just add a header in all your request to this API https://ropsten.etherscan.io/api (It took me more than 2 days found this which is really simple) … Additionally, you can add your API KEY https://etherscan.io/myapikey.

File=cert_issuer/blockchain_handlers/ethereum/connectors.py

headers = {
‘User-Agent’: “PostmanRuntime/7.17.1”,
‘Accept’: “/”,
‘Cache-Control’: “no-cache”,
‘Postman-Token’: “267dd7be-7f3f-4d67-a51c-05152aa8e8fc,8f8b84b0-3df1-4656-9480-c31e99d270d2”,
‘Host’: “ropsten.etherscan.io”,
‘Accept-Encoding’: “gzip, deflate”,
‘Cookie’: “__cfduid=d33064099a72a08ae6f9197c790da62d21569724532”,
‘Connection’: “keep-alive”,
‘cache-control’: “no-cache”
}
response = requests.get(broadcast_url, headers=headers)