gpt4 book ai didi

python - eBay API 在沙盒中返回 'Application ID invalid',但在生产中有效

转载 作者:行者123 更新时间:2023-11-30 23:40:39 25 4
gpt4 key购买 nike

比如说,我有以下网址:

http://open.api.sandbox.ebay.com/shopping?MaxEntries=2&QueryKeywords=pen&AvailableItemsOnly=false&version=681&siteid=0&appid=appid&callname=FindProducts&responseencoding=XML

http://open.api.ebay.com/shopping?callname=FindProducts&responseencoding=XML&appid=appid&siteid=0&version=681&QueryKeywords=pen&AvailableItemsOnly=true&MaxEntries=2

第一个产生以下错误:

2012-09-19T11:32:33.794Z Failure Application ID invalid. Application ID invalid. 1.20 Error RequestError E791_CORE_BUNDLED_15340089_R1 791

而第二个则不然。我检查了多次,两个网址中的 appid 都是相同的,所以问题不在于 appid。

由我的 python 代码形成的第一个 url:

import requests
d=dict(appid = app_id, siteid = site_id, version = version)

d.update(user_params)
data = requests.get(endpoint, params=d)

问题的根源可能是什么?为什么两个看似相似的网址表现不同?

最佳答案

http://open.api.sandbox.ebay.com/shopping? & http://open.api.ebay.com/shopping ?

一种是沙盒,一种是生产

When you join the Developers Program, you are provided with key sets for your application. The keys set for the Sandbox is different from the key set for the Production environment. (Keys for the Sandbox cannot be used to make API calls in the Production environment. Conversely, Production keys cannot be used to make API calls in the Sandbox.)

所以您的问题两个 URL 中的 appID 相同。 :)来自 Sandbox and Production Keys

关于python - eBay API 在沙盒中返回 'Application ID invalid',但在生产中有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12494181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com