timotheus / ebaysdk-python

eBay API SDK for Python
https://developer.ebay.com/tools/sdks
Other
808 stars 326 forks source link

eBay Finding API moving to HTTPS only #298

Closed jwolle1 closed 4 years ago

jwolle1 commented 4 years ago

I just wanted to check if ebaysdk.finding() will continue to work after the March 31, 2020 transition. Details here.

Thanks for your work on this project.

someidiot commented 4 years ago

I've done some analysis and you can enable HTTPS in your initial connection, it's off by default:

api = Finding(appid=blah, config_file=None, https=True)

jwolle1 commented 4 years ago

Much appreciated.