我在尝试使用带有python的易趣查找sdk时遇到连接错误



最近,当我尝试使用带有python的易趣查找SDK进行连接以发出请求时,我遇到了连接错误。错误打印没有说明错误所在。

这是我为发出API请求而编写的python脚本。

from ebaysdk.finding import Connection as find_connect
import xmltodict
APP_ID = 'ActualID was removed-PRD-For privacy'
# keywords = input("Enter search keywords(e.g 'white board'): ")
api = find_connect(appid=APP_ID, config_file=None,  siteid="EBAY-ENCA")
request = {
'keywords': "Iphone x 64gb",
'itemFilter': [
{'name': 'Condition', 'value': 'Used'},
{'name': 'currency', 'value': 'CAD'},
{'name': 'minPrice', 'value': 100.0}
],
'paginationInput': {
'entriesPerPage': 100,
'pageNumber': 10
},
}
resp = api.execute('findItemsByKeywords', request).dict() # Change from XML to dictionary

当我运行脚本时,我得到这个错误

Traceback (most recent call last):
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 1322, in getresponse
response.begin()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 303, in begin
version, status, reason = self._read_status()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 264, in _read_status
line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsocket.py", line 669, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [WinError 10054] An existing connection was forcibly closed by the remote host
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesrequestsadapters.py", line 439, in send
resp = conn.urlopen(
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 719, in urlopen
retries = retries.increment(
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3utilretry.py", line 400, in increment
raise six.reraise(type(error), error, _stacktrace)
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3packagessix.py", line 734, in reraise
raise value.with_traceback(tb)
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 665, in urlopen
httplib_response = self._make_request(
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 421, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesurllib3connectionpool.py", line 416, in _make_request
httplib_response = conn.getresponse()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 1322, in getresponse
response.begin()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 303, in begin
version, status, reason = self._read_status()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libhttpclient.py", line 264, in _read_status
line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsocket.py", line 669, in readinto
return self._sock.recv_into(b)
urllib3.exceptions.ProtocolError: ('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:/Users/Lase.Adebayo/PycharmProjects/eBay Data Collector/eBayCaller/ebay scripts/ebayxml.py", line 24, in <module>
resp = api.execute('findItemsByKeywords', request).dict() # Change from XML to dictionary
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesebaysdkconnection.py", line 123, in execute
self.execute_request()
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesebaysdkconnection.py", line 189, in execute_request
self.response = self.session.send(self.request,
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesrequestssessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "C:UsersLase.AdebayoAppDataLocalProgramsPythonPython38-32libsite-packagesrequestsadapters.py", line 498, in send
raise ConnectionError(err, request=request)
requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))

同样的代码大约两周前就起作用了。

python sdk开发人员似乎还没有将代码从HTTP更改为HTTPS。您可以使用YAML配置文件来指定https请求。

svcs.ebay.com:
appid: YOUR_APP_ID
https: 1

如果您想通过https调用2.1.5版或更早版本的SDK,则需要YAML配置。2.2.0+将强制所有通过https的呼叫,因为易趣已经完全转向https。

https://github.com/timotheus/ebaysdk-python/wiki/YAML-Configuration

如果您不想使用YAML,可以向api_call:添加一个参数

例如,以下是我在Python中不使用YAML时使用的代码:

api = finding(https=True, appid='your_app_id', config_file = None) 

或者你可以设置https=1

最新更新