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.
16 lines
520 B
16 lines
520 B
using BBWY.Common.Http;
|
|
using QuanTan.SDK.Model;
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|