Beispiel #1
0
 public async Task GetAllShopListingsWithIncludes(EtsyService etsyService)
 {
     var r = await etsyService.GetAllShopListings(_shopExample, null, null, new GetListingsPageParameters
     {
         Limit    = 100,
         Offset   = 0,
         Page     = 1,
         Includes = "Images(url_75x75,url_170x135):1:0,Shop(shop_id)"
     }).ToArrayAsync();
 }
Beispiel #2
0
 public async Task GetAllShopListings(EtsyService etsyService)
 {
     var r = await etsyService.GetAllShopListings(_shopExample).ToArrayAsync();
 }