You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// To check the format of Data, Go to this url (https://developer.ebay.com/api- docs/buy/browse/resources/item_summary/methods/search#w4-w1-w4-SearchforItemsbyKeyword-0)
183
+
})
184
+
});
185
+
```
186
+
187
+
## SearchItemsByFreeShipping
188
+
```javascript
189
+
ebay.getAccessToken()
190
+
.then((data) => {
191
+
ebay.searchItems({
192
+
keyword:"drone",
193
+
limit:3,
194
+
filter: { maxDeliveryCost:0 }
195
+
}).then((data) => {
196
+
console.log(data);
197
+
// Data is in format of JSON
198
+
// To check the format of Data, Go to this url https://developer.ebay.com/api-docs/buy/browse/resources/item_summary/methods/search#w4-w1-w4-ReturnItemswithFreeShipping-6.
// To check the format of Data, Go to this url https://developer.ebay.com/api-docs/buy/browse/resources/item_summary/methods/search#w4-w1-w4-ReturnItemsBasedonPriceandCondition-7.
215
+
})
216
+
});
217
+
```
218
+
171
219
## Test
172
220
All test files are present inside test folder. You can run using
0 commit comments