Skip to content

Commit

Permalink
chore(docs): update readme and add new docs how to run examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dantio committed Sep 12, 2021
1 parent 533d94c commit fca476a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,8 @@ eBay.trading.GetMyeBaySelling({
1. Do I need the [eBay OAuth Client](https://www.npmjs.com/package/ebay-oauth-nodejs-client) dependency?

No. This library has already all authentication implemented and support also auto refreshing token.
3. What does IAF mean?

2. What does IAF mean?

IAF stands for IDENTITY ASSERTION FRAMEWORK.
The traditional API supports IAF. That means you can use the OAuth2 token with the traditional APIs.
Expand Down
18 changes: 18 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# How to run the examples

## Install ts-node globally
```bash
npm i ts-node -g
```

## Set the environments variables:
EBAY_APP_ID=
EBAY_CERT_ID=
EBAY_DEV_ID=
EBAY_RU_NAME=
DEBUGX=ebay:*;

## Run
```bash
ts-node examples/restful/buy/items.getItem.ts
```

0 comments on commit fca476a

Please sign in to comment.