[eBay SDK使用c#获取JSON中的项目

问题描述 投票:0回答:1

需要eBay sdk中使用c#的JSON中的项目

这里是做相同事情的python代码

import pyodbc
import requests, json, re
server=r"DRIVER={SQL Server Native Client 11.0};Trusted_Connection=yes; SERVER=WIN- 
JA0M2L5D05K\ECOM;DATABASE=ebay; UID=sa; PASSWORD=1"
conn = pyodbc.connect(server)
params = (
('callname', 'GetSingleItem'),
('responseencoding', 'JSON'),
('appid', 'abc'),
('siteid', '77'),
('version', '967'),
('ItemID', '111859090492'),
('IncludeSelector', 'Variations,ItemSpecifics,Details,Description,VariationSpecifics'),
)
response = requests.get('http://open.api.ebay.com/shopping';, params=params, verify=False)
x = json.dumps(json.JSONDecoder().decode(response.text))
conn = pyodbc.connect(server)
ccc = conn.cursor()
x=ccc.execute(""" INSERT INTO [ebay].[dbo].[ee] (json) VALUES (?) """,x)
conn.commit()
print(x)

我已经这样做了,但是它的结果抛出了excepthin

    static void Main(string[] args)
    {

        // create a new service
        Shopping svc = new Shopping();
        // set the URL and it's parameters
        // Note: appid will go here,
        svc.Url = "http://open.api.ebay.com/shopping?appid=YOUR-ID&version=969&siteid=0&callname=GetSingleItem&responseencoding=JSON";
        // create a new request type
        GetSingleItemRequestType request = new GetSingleItemRequestType();
        request.ItemID = "111859090492";
        request.IncludeSelector = "Variations,ItemSpecifics,Details,Description,VariationSpecifics";

        // create a new response type
        GetSingleItemResponseType response = new GetSingleItemResponseType();

        try
        {
            // make the call
            response = svc.GetSingleItem(request);
        }
        catch (Exception ex)
        {
            // catch generic exception
            Console.WriteLine(ex.Message);  
            Console.ReadKey();           
            return;
        }
        Console.WriteLine(response);
        Console.ReadKey();
    }

catch块给出了我需要的结果,但是在实际结果之前有此错误

客户端发现响应内容类型为'text / plain; charset = utf-8',但预期为'text / xml'。请求失败,并显示错误消息:

c# ebay-api ebay-sdk
1个回答
0
投票

这对我来说很完美

© www.soinside.com 2019 - 2024. All rights reserved.