Hi all,
Based on a previous issue https://github.com/sentinelsat/sentinelsat/issues/467 , I try to check the http response code of each product_id, since the metadata are not reliable enough.
I’ve a snippet of code and I get response 401 (it seems that I don’t know use the credentials each time).
product_info = api.get_product_odata(id) is_online = product_info['Online'] url = product_info['url'] res = requests.get(url) print(res)
I also tried to use requests.post(url,auth = HTTPBasicAuth(‘username’,‘password’)) , but I got respone 500.
Did anyone face this problem? Any help will be useful.
Vasileios