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.
19 lines
496 B
19 lines
496 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 JDDongDongAPITest
|
|
{
|
|
public void GetServiceGroup(IJdClient client, string token)
|
|
{
|
|
var req = new ImPopGroupinfoGetRequest();
|
|
var response = client.Execute(req, token, DateTime.Now.ToLocalTime());
|
|
Console.WriteLine(JsonConvert.SerializeObject(response));
|
|
}
|
|
}
|
|
}
|
|
|