scrapeulous icon indicating copy to clipboard operation
scrapeulous copied to clipboard

meta.js error "ReferenceError: HttpWorker is not defined"

Open williambarberjr opened this issue 3 years ago • 0 comments

The python code shown below returns a "ReferenceError: HttpWorker is not defined" error.

    url = 'https://scrapeulous.com/api'
    payload = {
        "API_KEY": "key",
        "function": "https://raw.githubusercontent.com/NikolaiT/scrapeulous/master/meta.js",
        "region": "us",
        "items": ['https://www.google.com/']
    }
    
    r = requests.post(url, json = payload)
    error = r.json()

williambarberjr avatar Nov 03 '20 02:11 williambarberjr