You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
746 B
30 lines
746 B
using Jd.Api;
|
|
using Jd.Api.Request;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Test
|
|
{
|
|
public class JDServiceAPITest
|
|
{
|
|
public void GetServiceDetail(IJdClient client, string token)
|
|
{
|
|
|
|
var req = new AscQueryViewRequest();
|
|
|
|
req.buId = "10598776";
|
|
req.operatePin = "布莱特玩具";
|
|
req.operateNick = "布莱特玩具";
|
|
req.serviceId = 1606469473;
|
|
req.orderId = 256567714100;
|
|
|
|
//req.extJsonStr = "abc";
|
|
|
|
|
|
var response = client.Execute(req, token, DateTime.Now.ToLocalTime());
|
|
Console.WriteLine(JsonConvert.SerializeObject(response));
|
|
}
|
|
}
|
|
}
|
|
|