I am trying to get, some values from pycurl response because some different protocols produce some errors like
pycurl Error: [1] Protocol tel not supported or disabled in libcurl
I have to use followlocation 1
and, has different protocol like tel:
i have to get just location of value, not to follow that link, is this possible?
I tried to get this value with,
def header(self,buf):
self.HEADER_BUFFER = buf
c.setopt(pycurl.HEADERFUNCTION, self.header)
But couldn't get any data with this method.