Skip to content

Commit

Permalink
Amazon advertising identifier chapter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
uerceg authored Jan 4, 2018
1 parent 1f97f22 commit 6ec424c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -671,11 +671,11 @@ Adjust.getGoogleAdId((googleAdId) => {

### <a id="di-fire-adid"></a>Amazon advertising identifier

If you need to obtain the Amazon advertising ID, you can call the `getAmazonAdId` method on `Adjust` instance:
If you need to obtain the Amazon advertising ID, you can call the `getAmazonAdId` method of the `Adjust` instance and pass your callback as a parameter to which the Amazon advertising ID value will be sent once obtained:

```js
Adjust.getAmazonAdId(function(amazonAdId) {
// Use amazonAdId value.
```javascript
Adjust.getAmazonAdId((amazonAdId) => {
console.log("Amazon Ad Id = " + amazonAdId);
});
```

Expand Down

0 comments on commit 6ec424c

Please sign in to comment.