Imgur / imgurpython

Official Imgur python client library (deprecated)
MIT License
544 stars 116 forks source link

Endpoint/3/upload does not exist #93

Open piotrantosz opened 5 years ago

piotrantosz commented 5 years ago
        return PhotoUploadResource.client.make_request(
            'POST', 'upload', data, anon
        )

returns Endpoint/3/upload does not exist

piotrantosz commented 5 years ago

FIX

    return PhotoUploadResource.client.make_request(
        'POST', 'image', data, anon
    )

Just change upload => image.