Skip to content

Commit 4787e9c

Browse files
authored
Merge pull request #283 from johnsliao/master
Set Finding API to use https by default
2 parents c2b7118 + d2e478d commit 4787e9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ebaysdk/finding/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, **kwargs):
5555
appid -- eBay application id
5656
siteid -- eBay country site id (default: EBAY-US)
5757
version -- version number (default: 1.0.0)
58-
https -- execute of https (default: False)
58+
https -- execute of https (default: True)
5959
proxy_host -- proxy hostname
6060
proxy_port -- proxy port number
6161
timeout -- HTTP request timeout (default: 20)
@@ -73,7 +73,7 @@ def __init__(self, **kwargs):
7373
# override yaml defaults with args sent to the constructor
7474
self.config.set('domain', kwargs.get('domain', 'svcs.ebay.com'))
7575
self.config.set('uri', '/services/search/FindingService/v1')
76-
self.config.set('https', False)
76+
self.config.set('https', True)
7777
self.config.set('warnings', True)
7878
self.config.set('errors', True)
7979
self.config.set('siteid', 'EBAY-US')

0 commit comments

Comments
 (0)