Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved documentation on Registering on Timeout #2787

Merged
merged 1 commit into from
Apr 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dev-docs/bidder-adaptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,12 +465,12 @@ See below for an example implementation. For more examples, search for `getUser

### Registering on Timeout

The `onTimeout` function will be called when an adpater timed out for an auction. Adapter can fire a ajax or pixel call to register a timeout at thier end.
The `onTimeout` function will be called when an adapter has timed out for an auction. The adapter can fire an ajax or pixel call to register the timeout at their end.

Sample data received to this function:
Sample data passed to this function:

{% highlight js %}
{
[{
"bidder": "example",
"bidId": "51ef8751f9aead",
"params": {
Expand All @@ -479,7 +479,7 @@ Sample data received to this function:
"adUnitCode": "div-gpt-ad-1460505748561-0",
"timeout": 3000,
"auctionId": "18fd8b8b0bd757"
}
}]
{% endhighlight %}

### Registering on Bid Won
Expand Down