Hangi dil ile işlem yapıyorsunuz? Hata aldığınız kısımın kodlarını paylaşabilir misiniz?
.Net ile işlem yapıyorum.
string strAppKey = "****";
string strAppSecret = "*****";
Authentication auth = new Authentication();
auth.appKey = strAppKey;
auth.appSecret = strAppSecret;
GetProductListRequest req = new GetProductListRequest();
req.auth = auth;
req.pagingData = new RequestPagingData
{
currentPage=0,
pageSize=3
};
var port = new ProductServicePortClient();
GetProductListResponse res = port.GetProductList(req);
if (res.result.status == "success")
{
// string sampleProduct = res.;
}
Yukarıdaki kod ile ürün listesini çekiyorum. Response'dan gelen verileri incelediğimde fiyat dışındaki bilgiler null gelmektedir.
Çıktının ekran görüntüsü :