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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,5 +16,5 @@ Once you completed making the change, Please make sure to run the tests before y
16
16
`npm run test` which will test your code.
17
17
18
18
**Working on your first Pull Request?**
19
-
<ahref="https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github"target="_blank">How to Contribute to an Open Source Project on GitHub</a>.
19
+
<ahref='https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github'target='_blank'>How to Contribute to an Open Source Project on GitHub</a>.
// To check the format of Data, Go to this url (https://jsonblob.com/56cbea67-30b8-11e8-953c-5d1886dcf4a0)
159
159
console.log(data)
@@ -168,8 +168,8 @@ ebay.getAccessToken()
168
168
ebay.getAccessToken()
169
169
.then((data) => {
170
170
ebay.searchItems({
171
-
keyword:"drone",
172
-
limit:"3"
171
+
keyword:'drone',
172
+
limit:'3'
173
173
}).then((data) => {
174
174
console.log(data);
175
175
// Data is in format of JSON
@@ -183,7 +183,7 @@ ebay.getAccessToken()
183
183
ebay.getAccessToken()
184
184
.then((data) => {
185
185
ebay.searchItems({
186
-
keyword:"drone",
186
+
keyword:'drone',
187
187
limit:3,
188
188
// filter: { maxDeliveryCost: 0 } old object based filter method
189
189
filter:'maxDeliveryCost:0'// new string based filter method. Format here: https://developer.ebay.com/api-docs/buy/static/ref-buy-browse-filters.html#conditionIds
@@ -201,9 +201,9 @@ ebay.getAccessToken()
201
201
ebay.getAccessToken()
202
202
.then((data) => {
203
203
ebay.searchItems({
204
-
keyword:"iphone",
204
+
keyword:'iphone',
205
205
limit:3,
206
-
// filter: { price: "[300..800]", priceCurrency: "USD", conditions: "NEW" } old object based filter method
206
+
// filter: { price: '[300..800]', priceCurrency: 'USD', conditions: 'NEW' } old object based filter method
207
207
filter:'price:[300..800],priceCurrency:USD,conditions{NEW}'// new string based filter method. Format here: https://developer.ebay.com/api-docs/buy/static/ref-buy-browse-filters.html#conditionIds
0 commit comments