Python Ebay SDK with URL JSON Object Must be a String 错误
Python Ebay SDK with URL JSON Object Must be a String Error
我第一次尝试为 eBay 发现 API 设置我的 Python 代码,但我被难住了。
我还没有尝试打印或保存任何东西,因为代码不会 运行。我收到以下错误:
"file: "C:\Users\juan\Anaconda3\lib\json\_init_.py", line 348, in loads
'not {!r}'.format(s._class_._name_))
typeError: the JSON object must be str, bytes or bytearry, not "Response""
到目前为止我的代码:(我使用的是 "URL" 版本的 ebay 建议方法)
from ebaysdk.finding import Connection as finding
from bs4 import BeautifulSoup
import json
import requests
url = "http://svcs.ebay.com/services/search/FindingService/v1\
?OPERATION-NAME=findCompletedItems&\
SERVICE-VERSION=1.7.0&\
SECURITY-APPNAME=12221222-121212121-111-11111111-111111111&\
RESPONSE-DATA-FORMAT=JSON&\
REST-PAYLOAD&\
GLOBAL-ID=EBAY-MOTOR&\
keywords=Garmin+nuvi+1300+Automotive+GPS+Receiver&\
categoryId=156955&\
itemFilter(0).name=Condition&\
itemFilter(0).value=3000&\
itemFilter(1).name=FreeShippingOnly&\
itemFilter(1).value=true&\
itemFilter(2).name=SoldItemsOnly&\
itemFilter(2).value=true&\
sortOrder=PricePlusShippingLowest&\
paginationInput.entriesPerPage=2"
info = requests.get(url)
doc = json.loads(info).decode()
EbaySdk 不会向您返回该错误。
requests.get
returns 响应对象,不是字符串。 json.loads
需要字符串或字节,但您给了它一个响应。
Response 对象有自己的 json 函数
info = requests.get(url)
doc = info.json()
我第一次尝试为 eBay 发现 API 设置我的 Python 代码,但我被难住了。
我还没有尝试打印或保存任何东西,因为代码不会 运行。我收到以下错误:
"file: "C:\Users\juan\Anaconda3\lib\json\_init_.py", line 348, in loads
'not {!r}'.format(s._class_._name_))
typeError: the JSON object must be str, bytes or bytearry, not "Response""
到目前为止我的代码:(我使用的是 "URL" 版本的 ebay 建议方法)
from ebaysdk.finding import Connection as finding
from bs4 import BeautifulSoup
import json
import requests
url = "http://svcs.ebay.com/services/search/FindingService/v1\
?OPERATION-NAME=findCompletedItems&\
SERVICE-VERSION=1.7.0&\
SECURITY-APPNAME=12221222-121212121-111-11111111-111111111&\
RESPONSE-DATA-FORMAT=JSON&\
REST-PAYLOAD&\
GLOBAL-ID=EBAY-MOTOR&\
keywords=Garmin+nuvi+1300+Automotive+GPS+Receiver&\
categoryId=156955&\
itemFilter(0).name=Condition&\
itemFilter(0).value=3000&\
itemFilter(1).name=FreeShippingOnly&\
itemFilter(1).value=true&\
itemFilter(2).name=SoldItemsOnly&\
itemFilter(2).value=true&\
sortOrder=PricePlusShippingLowest&\
paginationInput.entriesPerPage=2"
info = requests.get(url)
doc = json.loads(info).decode()
EbaySdk 不会向您返回该错误。
requests.get
returns 响应对象,不是字符串。 json.loads
需要字符串或字节,但您给了它一个响应。
Response 对象有自己的 json 函数
info = requests.get(url)
doc = info.json()