Hi Pipe Friends!
I’m building this code to make an external backup of specific pipes report. But i can’t download the report in the end. I receive this error message:
"https://url_returned_by_pipefy"
Ocorreu um erro: (<class 'urllib.error.URLError'>, URLError('unknown url type: "https'), <traceback object at 0x000001C6002DD680>)
I think that I wasn’t using the right method to parse into string the url_relatorio variable. I’m using Python 3
import requests
import json
import urllib
import sys
from urllib.request import urlopen
url = "https://api.pipefy.com/graphql"
payload_id_relatorio = {"query": "mutation {exportPipeReport(input: { pipeId:\"XXXX\", pipeReportId: \"XXXX\"}) {pipeReportExport {id}}}"}
headers = {
"Authorization": "Bearer XXXX",
"Content-Type": "application/json"
}
response = requests.request("POST", url, json=payload_id_relatorio, headers=headers)
data = json.loads(response.text)
Id_relatorio = datar'data']t'exportPipeReport']p'pipeReportExport']r'id']
payload_obter_url_relatorio = {"query": "{pipeReportExport(id: "+ Id_relatorio + "){fileURL state startedAt requestedBy {id}}}"}
headers = {
"Authorization": "Bearer XXXX",
"Content-Type": "application/json"
}
response_obter_url_relatorio = requests.request("POST", url, json=payload_obter_url_relatorio, headers=headers)
data_relatorio = json.loads(response_obter_url_relatorio.text)
url_relatorio = json.dumps(data_relatorio_'data']i'pipeReportExport']r'fileURL'])
print(url_relatorio)
try:
urllib.request.urlretrieve(url_relatorio, 'C://Users/user/Downloads/teste.xlsx')
print("Arquivo salvo! =)")
except:
erro = sys.exc_info()
print("Ocorreu um erro:", erro)
Could anyone give me some help in this case? Tks a lot!
Best regards!