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.
17 lines
571 B
17 lines
571 B
using BBWY.Common.Http;
|
|
using QuanTan.SDK.Model.Response;
|
|
using QuanTan.SDK.Model.Response.Product;
|
|
namespace QuanTan.SDK.Client
|
|
{
|
|
public class QuanTanProductClient : BaseClient
|
|
{
|
|
public QuanTanProductClient(RestApiService restApiService) : base(restApiService)
|
|
{
|
|
}
|
|
|
|
public QuanTanResponse<QuanTanProductResponse> GetProductInfo(string productId, string appId, string appSecret)
|
|
{
|
|
return SendRequest<QuanTanProductResponse>($"api/platform/product/spu/{productId}", null, appId, appSecret);
|
|
}
|
|
}
|
|
}
|
|
|