Google上的Cookie Matching
Cookie Matching
This guide explains how the Cookie Matching Service enables you to make more effective bidding choices.
The Cookie Matching Service enables a buyer to associate two types of cookies:
- One that identifies a user within the buyer domain.
- A
doubleclick.net
cookie that identifies a Google user. (We share a buyer-specific encrypted user ID for buyers to match on.)
With an RTB application, the buyer can bid on impressions where the user has a specific Google User ID, and can use information associated with that ID as criteria in a bid for an ad impression. Google can host the match table that correlates the data from the two domains. Having Google host the table may be simpler, with reduced latency and easier upgrades.
Background
A browser cookie is typically set by the party that owns the domain to which the cookie belongs. The cookie identifies a user within that domain. The security model of the browser restricts one party from reading the cookie set by another party, even if both parties would otherwise agree to such an exchange.
The buyer typically identifies users with cookies that belong to the domain of a third-party ad network. The buyer can associate the cookies with other user information in a database.
For itself, Google identifies users with cookies that belong to the doubleclick.net
domain under which Google serves ads. For buyers, Google identifies users using a buyer-specific Google User ID consisting of an encrypted version of the doubleclick.net
cookie, derived from but not equal to that cookie. Google passes the user ID to the buyer (raw DoubleClick cookies are never sent).
When receiving a particular Google User ID for the first time, the buyer has no knowledge about the user associated with the ID other than what the bid request reveals. The buyer can match the Google User ID with a buyer cookie, and subsequently consider user information associated with the buyer cookie in making decisions about users identified by the Google User ID. This can be useful in remarketing campaigns, and in refining targeting or bidding for impressions in real time bidding.
The Cookie Matching Service provides the information that a buyer network needs to maintain an association between the buyer cookie and the Google user ID, in the form of a match table. Additionally, the buyer can forward data to Google for storage and later use in bid requests.
Benefits of hosted match tables
Important: Contact your account representative for access to this service.
Buyers who choose to have Google host their match tables stand to gain the following benefits:
- Lower infrastructure investment
- Mapping the Google User ID to a useful form does not require a table lookup
- During pre-targeting, there is the option to filter on whether or not a cookie match exists, which can reduce unwanted bid requests
How cookie matching works
To build an association in the match table, the buyer must serve a tag provided by Google, called the match tag. The match tag can be served with the buyer's ads, or it can be placed on its web properties outside of ads. It is structured as follows:
<img src="http://cm.g.doubleclick.net/pixel?google_nid=1234&google_cm" />
Here 1234
would be replaced by the buyer identifier supplied by Google.
The buyer should only serve this tag if the buyer does not already have a match for this user (or if that entry is stale).
Upon receiving the request for the tag from the user's browser, Google issues a 302
redirect to the buyer. This302
redirect includes the Google User ID and a version number in the URL, and the buyer cookie in the request headers. The buyer supplies the base URL, and Google appends URL parameters.
For example, the buyer could supply this base URL:
http://ad.network.com/pixel
Google could then redirect to a URL like this:
http://ad.network.com/pixel?google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
The Google User ID passed through the google_gid
parameter is an unpadded URL-safe base64-encoded string. We recommend storing the exact string returned by the Cookie Matching Service in the match table.
The google_user_id
field in the BidRequest
protocol buffer corresponds to the Google User ID returned by the Cookie Matching Service.
The google_cver
parameter indicates a numeric version number for the Google User ID. Google may infrequently change the cookie obfuscation scheme, at which point the google_cver
value will be increased.
The buyer receives this redirect, which includes the buyer cookie in the request headers, and updates the match table with the association between this buyer cookie and the Google User ID. The buyer must then serve a 1x1 invisible image pixel to the user's browser, or return a 204
No Content response.
Entries are added to the match table at the rate at which match tags are served to unique users.
This process is illustrated by the diagram below. Each request or response is represented by an arrow, and the data items that accompany the request or response are listed in parentheses.
You can opt to set extra URL parameters on the request and these are passed to your server in the redirect:
<img src="http://cm.g.doubleclick.net/pixel?google_nid=1234&google_cm&extra1=xx&extra2=yy" />
All parameters that do not start with the google_
prefix are copied over into the redirect URL. The order in which the parameters are passed to the Cookie Matching service is not important. Similarly, the order in which extra parameters are passed in the redirect URL is not guaranteed.
http://ad.network.com/pixel?google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1&extra1=xx&extra2=yy
You can use these parameters to pass additional information about the impression. Extra parameters should be no longer than one kilobyte.
It is also possible to make https
rather than http
requests to the cookie matching service. In this case the protocol of the redirect URL is likewise https
rather than http
.
Example scenarios
How would cookie matching look to a typical web user, and what's happening behind the scenes? Let's take a look at two scenarios.
Scenario 1: Cleared cookies
Jane clears her cache of all cookies. She then visits the homepage of ExampleNews.com.
Here's what happens:
- ExampleNews.com renders, and calls ads from Google (DFP).
- Because the ad unit is eligible for dynamic allocation, Ad Exchange sends bid requests to FinestDSP (among other DSPs).
- FinestDSP processes the bid request in its bid engine, and sends its bid response to Ad Exchange
- FinestDSP wins the auction, and sends an ad with a match tag (pixel) to Ad Exchange.
- Ad Exchange serves FinestDSP's ad and match tag to Jane, and also sets Jane's DoubleClick cookie.
- The match tag calls Google's Cookie Match Service.
- The Cookie Match Service reads Jane's DoubleClick cookie, and sends a redirect to FinestDSP with
google_user_id
set. - The browser loads FinestDSP's URL.
- FinestDSP generates a cookie, which it stores against Jane's
google_user_id
in its match table. - FinestDSP drops its cookie in Jane's browser and responds to the redirect with an invisible 1x1 pixel.
Scenario 2: Buyer and DoubleClick cookies
A week after Scenario 1, Jane visits ExampleNews.com again. Now that Jane has both buyer and DoubleClick cookies on her machine, let's see how matching works.
- The web page renders, executing the HTML code's call to Google for ads.
- During the ad auction, Ad Exchange sends a bid request to an RTB buyer, FinestDSP, giving that buyer the option of bidding on the impression.
- The buyer receives the bid request with impression information and the
google_user_id
. - FinestDSP looks up the
google_user_id
in its match table to find the cookie created a week earlier (in Scenario 1). - Based on the information associated with its cookie, FinestDSP decides to bid on the impression, and wins the auction.
- Jane might see an ad tailored to her or her interests, again based on information that FinestDSP possesses.
Cookie Matching Service
This section explains how buyers can use the Cookie Matching Service.
Before you can use the Cookie Matching Service, you must have:
- An Ad Exchange account
- A real-time bidder up and running
Next, you must provide Google with your redirect URL. This is the URL to which the Cookie Matching Service should redirect the request for your match tag. This request comes from the user's browser, as described in How cookie matching works above.
You can provide Google with the redirect URL through your Ad Exchange account representative. Or, if you have access to the Ad Exchange Buyer REST API, you can set the URL using one of the methods for updating anAccounts resource.
Serve cookie match tag
You must have the ability to place the Google-supplied match pixel tag on the user's browser. You may choose to place this pixel along with served ads, or on web properties under your control.
Serve pixels
Your servers must recognize the redirect URL, and serve a 1x1 empty pixel to the user's browser in a timely fashion. While processing incoming requests to the redirect URL, your servers should also parse the URL to extract the Google User ID and error codes, and update the match table.
Handle errors
The Cookie Matching Service communicates errors in the google_error
special URL parameter in the redirect. The value of this parameter is numeric and identifies the particular error that occurred. You should still respond with a 1x1 empty pixel if the google_error
URL parameter is present. If you receive an error, you may show a match tag for the related buyer cookie again.
Cookie Matching Service alternative
To do cookie matching without using the Cookie Matching Service, embed the google_user_id
field in theBidRequest
. This way, the google_user_id
can be extracted from the BidRequest
and not from the redirect URL to which the Cookie Matching Service inserts the google_user_id
. By avoiding redirects, you also reduce the likelihood of the cookie match request timing out, as from the user navigating away from the page for example.
Pixel matching
In cookie matching, the buyer that wins the auction for an impression can associate a cookie with a Google User ID. In another component of Google's cookie matching code, called pixel matching, Google algorithmically selects an additional buyer whose cookie can be matched with the Google User ID. Google then places a match tag onto the impression, and includes the chosen buyer's URL in the match tag.
This sets the stage for the following interaction:
- When the page loads in the user's browser, the match tag generates a pixel request to the buyer.
- If you are the chosen buyer:
- You receive your own cookie along with the Google User ID, enabling you to associate the two in your match table.
- You must redirect the request back to Google.
- The chosen buyer responds with a redirect.
- Google receives the redirect and stores the match between user and buyer.
- Google serves the pixel to the browser.
Pixel matching does not operate on the properties of publishers who opt out of the additional match.
How it works
Google places the match tag on the page, which combines a buyer-supplied URL with the Google User ID (thegoogle_gid
parameter) and a new google_push
parameter. The match tag is structured as follows:
<img src="http://ad.network.com/pixel?google_gid=abcdef&google_cver=1&google_push=<push_data>" />
The match tag causes the buyer to receive a request for the pixel (see item 1 in the diagram below). Upon receiving the request, the buyer must redirect to a URL structured as follows:
http://cm.g.doubleclick.net/pixel?google_nid=1234&google_push=<push_data>
This URL is similar to the one used in buyer-initiated cookie matching, except that the google_push
parameter replaces the google_cm
parameter. The <push_data>
value passed in the redirect must be identical to the value provided by Google in the match tag. The buyer also has the option of adding parameters such as google_ula
or google_hm
.
The google_push
parameter and the google_cm
parameter should never appear in the same request.
The reply that the buyer sends to the browser is depicted by item 2 in the diagram below, and the redirect that the browser then sends to Google is depicted by item 3.
Upon receiving the redirect, Google returns an invisible pixel (item 4 in the diagram). Google then logs that a match has been created for the user. Google also handles any other requested operations, such as storing hosted data or adding the user to a user list. Google waits 14 days, until the user-buyer match has expired, before introducing the match again.
In the diagram below, each request or response is represented by an arrow, and the data items that accompany the request or response are listed in parentheses.
Restrictions
This section describes the restrictions that Google has put in place to protect user privacy and ensure a pleasant user experience.
Respects user privacy
The Cookie Matching Service respects user privacy by adhering to the following principles:
- Google does not accept any user information provided by the buyer (such as the cookie, user demographics, etc.)
- Google prohibits multiple buyers from joining their match tables.
- The Cookie Matching Service does not expose Google's DoubleClick cookie.
- The purpose of the match table is to allow buyers to use the information they own about the user in transacting with Google. The use of the Cookie Matching Service for the purpose of data harvesting is strictly prohibited by the Ad Exchange contract and policies.
Bidders are expected to support the above principles, and to safeguard user privacy in their implementations.
Cap frequency
You, as the buyer, are responsible for frequency capping the Cookie Matching Service so that it is not used for users who already have a fresh entry in the match table. You should not serve the Cookie Matching tag unless the match table does not have an entry for the user in question, or the entry is stale. After 14 days, you may consider the Match entry expired, and refresh it.
Google does not enforce frequency capping at serving time. However, it does periodically monitor that you are respecting the frequency capping policy, and reserves the right to interrupt the free service in case of violation.
Respond to all pixel match requests
If you sign up to use the Pixel Matching service you are expected to respond to all Pixel Match requests. This allows us to monitor various policies of how you are using this service. If your response rate drops below a 90% response rate we will throttle the number of Pixel Match requests we send to your account.
Adhere to maximum request rate
When you sign up for the Cookie Matching Service, Google provides a maximum request rate. Google monitors your transactions to ensure that you adhere to this request rate.
API specifications
Match tag
The match tag must contain the buyer ID (passed through the google_nid
parameter), as well as the Cookie Matching Service URL. The protocol may be either http
or https
. The following are examples of valid match tag URLs:
http://cm.g.doubleclick.net/pixel?google_nid=my_nid
https://cm.g.doubleclick.net/pixel?google_nid=my_nid
the above requests are no-ops since no operation was specified.
Google reserves all URL parameters for the Cookie Matching Service that start with the prefix google_
for future API expansion. Any other URL parameters added to the match tag pass into the redirect URL uninterpreted.
The Cookie Matching service supports several operations:
- Perform cookie matching -- the basic cookie matching operation described above.
- Add the user to a user list -- adds the user to a user list, avoiding the need for a separate tag.
- Set cookie if missing -- normally the Cookie Matching Service does not set a doubleclick.net cookie on the user's browser if one is not already present. When this option is set, the Cookie Matching Service sets the doubleclick.net cookie.
These operations are supported through the following URL parameters:
Parameter | Description |
---|---|
google_nid |
Network ID. This is a buyer ID. Here, "network" refers to the typical buyer, an ad network. This ID can be retrieved through the Buyer REST API Accounts resource's cookieMatchingNid field. |
google_cm |
Perform cookie matching. The value the parameter is ignored and may be omitted. |
google_sc |
Sets the cookie if one is not present. The value of the parameter is ignored and may be omitted. Omitting the parameter results in an error if no doubleclick cookie is present. |
google_no_sc |
Does not set the cookie if one is not present. The value of the parameter is ignored and may be omitted. |
google_ula |
Adds to the user list. The value is in the format userlistid[,timestamp]
This URL parameter may be repeated to add the user to multiple lists. |
All other parameters that start with the google_
prefix are ignored by the Cookie Matching service and are not passed through to the redirect URL. Parameters that do not begin with the google_
prefix are added to the redirect URL together with the response google_
parameters.
The order of parameters is not important. See the Examples section for illustrations of valid and invalid URLs.
The google_hm
parameter is documented in the Hosted match table section.
Redirect URL
All URL parameters starting with the prefix google_
are reserved for future API expansion.
The redirect URL is built from several parts:
- The protocol,
http
orhttps
, as determined by the protocol with which the match tag was called. - The base redirect URL supplied by you to Google (including any hard-coded URL parameters).
- Response
google_
parameters (depending on the requestgoogle_
parameters supplied by you in the match tag). - Extra URL parameters sent in the match tag that do not start with the
google_
prefix.
The following google_
response parameters are defined:
Parameter | Description |
---|---|
google_error |
Overall request error. No operations have been performed and no other
|
google_gid |
Google User ID. Set if google_cm is specified in the request and the request was successful. |
google_cver |
Cookie version. Set if google_cm is specified in the request and the request was successful. |
google_ula |
Status of user list add operation, repeated if multiple Ex: The
|
Hosted match table
You can choose to have Google host your match table. This may improve reporting of table size and match rates, and reduce the amount of infrastructure you need to support.
A Google-hosted match table offers a mechanism whereby data which you pass to Google for storage is later passed back to you in bid requests. Typically, when you have placed a match tag for a user whom you have identified with your own internal cookie ID, you include that cookie ID in the cookie match request that you send to Google. Google hosts the data you sent, and includes it in subsequent bid requests for impressions viewed by the same user. This enables you to:
- Skip the step of storing the mapping between the Google User ID and your cookie space.
- Opt to receive a bid request only when the user is one for whom you have a match table entry.
The google_hm
parameter serves as a container for data that you pass to Google in the cookie match request. When Google responds with the 302
redirect, the google_hm
parameter may be present with an error code.
When Google needs to pass the data back to you, it does so in the hosted_match_data
field of the bid request. See the realtime-bidding-proto file for a description of the hosted_match_data
field.
google_hm
as a cookie match request parameter
Parameter | Description |
---|---|
google_hm |
Contains data which the buyer wants Google to store in the hosted match table. The value is a URL-safe base64 string (padding optional). |
google_hm
as a redirect parameter
Parameter | Description |
---|---|
google_hm |
Only appears if the attempt to write data to the hosted match table fails. When that happens, its value is one of the following status codes:
|
google_hm
with an explicit redirect URL
Parameter | Description |
---|---|
google_hm |
Base64-encoded user ID. |
google_redir |
The encoded URL of where the buyer wants Google to send a 302 redirect. This allows Ad Exchange to be placed at the front in a chained call to partners. |
Example:
http://cm.g.doubleclick.net/pixel?google_nid=<my_nid> \
&google_hm=<user_id_base64>&google_redir=<encoded_URL>
Cookie matching macros
You can now optionally configure your URLs with one or more macros in the form of either %%GOOGLE_GID%% or %%GOOGLE_GID_PAIR%%. The %%GOOGLE_GID%% will be substituted for the google_gid
value directly, while the %%GOOGLE_GID_PAIR%% will be substituted with a google_gid=value
.
The supported macros are:
Macro | Expands to |
---|---|
GOOGLE_GID | <google user id> |
GOOGLE_GID_PAIR | &google_gid=<google user id> |
GOOGLE_CVER | <cookie version number> |
GOOGLE_CVER_PAIR | &cver=<cookie version number> |
GOOGLE_ERROR | <error id> |
GOOGLE_ERROR_PAIR | &google_error=<error id> |
GOOGLE_PUSH | <pixel match data> |
GOOGLE_PUSH_PAIR | &google_push=<pixel match data> |
GOOGLE_ALL_PARAMS | google_gid=<google user id>&cver=<cookie version number>&google_error=<error id> |
Examples
Simple request
The simplest form of a Cookie Match request is one with no extra parameters. The match tag URL in this case would be:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_cm
Assuming your configured redirect URL is:
http://ad.network.com/pixel?id=
An example of a successful response is:
http://ad.network.com/pixel?id=&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
If the user does not have a doubleclick.net cookie, the response is:
http://ad.network.com/pixel?id=&google_error=3
In the case where the user has a doubleclick.net cookie, but has opted out from behavioral targeting, the error code would be 1
.
Extra parameters in match tag
If you use extra parameters in the match tag that do not begin with google_
, they are passed on to your server. For example, let's take the two extra parameters p1=v1
and p2=v2
.
The match tag URL in this case is:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_cm&p1=v1&p2=v2
An example of a successful response is:
http://ad.network.com/pixel?id=&p1=v1&p2=v2&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
The extra parameters are not guaranteed to appear at the end, and the order of the parameters is also not guaranteed.
An error response would add the extra parameters in a similar way, while reporting the error as in the first example.
Extra parameters in configured redirect URL
Suppose your configured URL is:
http://ad.network.com/pixel?id=&p1=v1&p2=v2
And you use the simple version of the match tag URL:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_cm
An example of a successful response is:
http://ad.network.com/pixel?id=&p1=v1&p2=v2&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
google_
parameters
If you pass an extra parameter in the match tag URL or in your configured redirect URL which begins withgoogle_
, the parameter is not passed in the redirect to your server.
For instance, if you use the following two match tag URLs with the simple configured redirect URL:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_cm&google_p1=v1&p2=v2
An example of a successful response is:
http://ad.network.com/pixel?id=&p2=v2&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
Note that the google_p1
parameter is not passed in the redirect to your server.
google_ula
Assuming your configured redirect URL is:
http://ad.network.com/pixel?id=
And you use the following match tag URL:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_ula=12345
Upon success the user is redirected to
http://ad.network.com/pixel?id=&google_ula=12345,0
If there is an overall error (e.g., the user has no doubleclick.net cookie), the redirect URL is:
http://ad.network.com/pixel?id=&google_error=3
You can also specify a timestamp:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_ula=12345,7654321
The redirect URL upon success would be the same.
The redirect URL in case of error is similar, but the status code would be different. Suppose you don't have permission to add users to user list 12345
, the redirect URL would be:
http://ad.network.com/pixel?id=&google_ula=12345,2
You can also specify multiple lists using multiple google_ula
request parameters. Note that you can specify a timestamp on each independently:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_ula=12345,7654321&google_ula=45678
The status of each operation is reported separately in the redirect URL:
http://ad.network.com/pixel?id=&google_ula=12345,2&google_ula=45678,0
Here the user has been added to the list 45678
, but there was a permission error for list 12345
.
You can combine the google_ula
and google_cm
request parameters to perform cookie matching and add the user to a user list in a single request:
http://ad.network.com/pixel?id=&google_ula=12345&google_cm
The redirect URL is:
http://ad.network.com/pixel?id=&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1&google_ula=12345,0
google_sc
and google_no_sc
google_sc
- The
google_sc
request parameter causes the Cookie Matching service to set the doubleclick.net cookie if the user does not currently have it set. google_no_sc
- The
google_no_sc
request parameter prevents the Cookie Matching service from setting the doubleclick.net cookie if the user does not currently have it set. The default behavior is to set the cookie.
These parameters do not otherwise modify the result of the request. The Cookie Matching Service may not always succeed in setting the cookie if, for example, the user has disallowed cookies generally or the doubleclick.net cookie in particular.
If the Cookie Matching service needs to set a cookie, it verifies that the user's browser has accepted the cookie by issuing a self-redirect with the Set-Cookie
header. If the user's browser does not send the cookie in the self-redirect, it is classified as not accepting the doubleclick.net cookie and the redirect to you containsgoogle_error=3
.
Assuming your configured redirect URL is:
http://ad.network.com/pixel?id=
And you use the following match tag URL:
http://cm.g.doubleclick.net/pixel?google_nid=ad_network_xyz&google_ula=12345
If the user does not have the doubleclick.net cookie, and you used google_no_sc
, the redirect URL is:
http://ad.network.com/pixel?id=&google_error=3
If instead, you specify the google_cm
request parameter and the cookie is successfully set, then the redirect URL is:
http://ad.network.com/pixel?id=&google_gid=dGhpcyBpcyBhbiBleGFtGxl&google_cver=1
There is no way to tell whether the doubleclick.net cookie has just been set, or the user had one all along.
If the cookie cannot be set, the redirect URL is identical to the regular error redirect URL:
http://ad.network.com/pixel?id=&google_error=3
Hosted match table
Successful write
Values to use in the example:
- for the
google_hm
parameter,Cookie number 1!
encoded in URL-safe base64 asQ29va2llIG51bWJlciAxIQ==
- for the configured redirect URL,
http://cookie-monster.com/pixel?id=
The Cookie Match Request is:
http://cm.g.doubleclick.net/pixel?google_nid=cookie-monster&google_hm=Q29va2llIG51bWJlciAxIQ%3D%3D
The 302
redirect is:
http://cookie-monster.com/pixel?id=
Because the google_hm
parameter has been set with the encoded value Cookie number 1!
, subsequent bid requests for impressions viewed by the same user contain that value in the hosted_match_data
field:
BidRequest <
...
hosted_match_data: "Cookie number 1!"
>
Here's what happens:
- Because
google_cm
was not set in the request,google_gid
is not in the response. - Because the hosted write was successful,
google_hm
is not in the response. - Because the write was successful, the hosted data becomes available in subsequent bid requests.
Decode error
For this example, assume that the configured redirect URL is:
http://cookie-monster.com/pixel?id=
The Cookie Match Request is:
http://cm.g.doubleclick.net/pixel?google_nid=cookie-monster&google_hm=chocolate_chunk!
Note that the buyer has added the google_hm
parameter but has neglected to encode its value, and instead attempted to set the parameter with the unencoded value chocolate_chunk!
.
The 302
redirect is:
http://cookie-monster.com/pixel?id=&google_hm=2
Here's what happens:
- Because
google_cm
was not set in the request,google_gid
is not in the response. - The Cookie Matching Service tries to decode the value of the
google_hm
parameter as URL-safe base64, butchocolate_chunk!
cannot be successfully decoded as base64, and this causes the hosted write to fail. - Because the hosted write fails,
google_hm
appears in the response with error code2
—a decode error. - Since the write was unsuccessful, no new hosted match data becomes available in bid requests (although old data is still sent).
No-cookie error
For a variety of reasons, not every user has a doubleclick.net cookie at any given time.
For this example, assume that there is no doubleclick.net cookie in the user's browser. We'll also assume that the configured redirect URL is:
http://cookie-monster.com/pixel?id=
The Cookie Match Request is:
http://cm.g.doubleclick.net/pixel?google_nid=cookie-monster&google_hm=chocolate_chunk!
Note that the buyer has added the google_hm
parameter but has neglected to encode its value, and instead attempted to set the parameter with the unencoded value chocolate_chunk!
.
The 302
redirect is:
http://cookie-monster.com/pixel?id=&google_error=3
Here's what happens:
- The lack of a cookie causes the overall request to fail, so
google_error
is set in the response. - Although the buyer set the
google_hm
with an unencoded value, which would fail when the Cookie Matching Service tried to decode it, there is no attempt to decodegoogle_hm
because the failure of the overall request is a higher-level error that takes precedence. Thereforegoogle_hm
is not set with a decode error in the response. - Since the write was unsuccessful, no new hosted match data becomes available in bid requests (although old data is still sent).
Putting it all together
Values to use in the example:
- for the
google_hm
parameter,Cookie number 1!
encoded in base64 asQ29va2llIG51bWJlciAxIQ==
- for the
google_ula
parameter, the value12345
- for the configured redirect URL,
http://cookie-monster.com/pixel?id=
- for the extra parameter
my_extra_param
, no value - for the extra parameter
my_other_extra_param
, value7
The Cookie Match Request is:
http://cm.g.doubleclick.net/pixel? google_nid=cookie-monster&google_cm&google_hm=Q29va2llIG51bWJlciAxIQ%3D%3D &google_ula=12345&my_extra_param=&my_other_extra_param=7
The 302
redirect is:
http://cookie-monster.com/pixel? id=&my_extra_parameter=&my_other_extra_param=7 &google_gid=ABCDETC&google_cver=1&google_ula=12345,0
Here's what happens:
- The extra parameters pass through first untouched.
- The
google_ula
parameter contains the status of the userlist add attempt (0: OK
). - Because the hosted match table write was successful, the hosted match data becomes available in subsequent bid requests.
- Because the
google_hm
parameter has been set with the encoded valueCookie number 1!
, subsequent bid requests for impressions viewed by the same user contain that value in thehosted_match_data
field:
BidRequest <
...
hosted_match_data: "Cookie number 1!"
>
Cookie matching macros
Without macros
Typically the user supplies Google with a base cookie matching URL to which cookie matching parameters are appended. For example, this URL is passed to be stored as rtb-keys:
http://user.buyer.com/cookies?x=0&y=1
This is appended with parameters when calling it:
http://user.buyer/cookies? x=0&y=1&google_push=456&google_gid=1&google_cver=1
With macros
If the buyer needs the parameters in a specific order, they could provide the following for rtb-keys:
http://user.buyer.com/cookies? w=0%%GOOGLE_PUSH_PAIR%%&x=1%%GOOGLE_GID_PAIR &y=2%%GOOGLE_CVER_PAIR%%&z=3%%GOOGLE_ERROR_PAIR%%
Google would expand the macro and append the rest of the parameters:
http://user.buyer.com/cookies? w=0&google_push=456&x=1&google_gid=1&y=2&google_cver=1&z=3
Note that, because the _PAIR
style macro was used, the macro expansion also included the parameter name. The following URL would produce the same result:
http://user.buyer.com/cookies? w=0&google_push=%%GOOGLE_PUSH%%&x=1&google_gid=%%GOOGLE_GID%%&y=2 &google_cver=%%GOOGLE_CVER%%&z=3%%GOOGLE_ERROR_PAIR%%
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License, and code samples are licensed under the Apache 2.0 License. For details, see our Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
上次更新日期:七月 6, 2016
原文地址:https://developers.google.com/ad-exchange/rtb/cookie-guide
Google上的Cookie Matching的更多相关文章
- unset是不能清除保存在本地电脑上的cookie的,用于session就可以(弄了半天原来是这样)
unset($_COOKIE["historyWord[$wordId]"]); 这样是不行的,unset只是将变量在脚本运行时注销,但是cookie是写在客户端的,下一次还是可以 ...
- 如何在Google上下载高清原图
在我们学习和生活中常常一些高清图片作为相关的素材,比如制作PPT.写博文.制作视频都需要大量图片.我们常常会在百度上下载一些图片,但是百度上提供的图片存在很多问题:存在水印.清晰度不够等.而Googl ...
- iPad上的Cookie到底有多长?
[故事背景]: 公司某个站点,特别依赖Cookie的使用,而且用的比较狠.在设计之初想当然地以为到达Cookie上限是猴年马月的事儿,没想到时过境迁,这个上限真的来了. 着手改吧,也不想投入太多.于是 ...
- postman app支持浏览器上的cookie
1. 安装postman app 注意要安装postman application(一个应用软件),而不是chrome 插件,打开下面的这个开关 2. chrom浏览器 给chrom浏览器安装pos ...
- 71、Android上对Cookie的读写操作
Cookie是为了辨别用户身份.进行session跟踪而储存在用户本地终端上的数据,在Android中也经常用到,接下来我们介绍Cookie在Android里是如何进行读写的. Cookie其实就 ...
- 什么是cookie(前段时间看到别人简历上把cookie和localStorage混淆了所以专门又去了解了下)
在前端面试中,有一个必问的问题:请你谈谈cookie和localStorage有什么区别啊? localStorage是H5中的一种浏览器本地存储方式,而实际上,cookie本身并不是用来做服务器存储 ...
- node 上的cookie的签名和解签名
cookie签名的原因是防止别人篡改cookie原本的值,如果这个过程中cookie被改变的话,就会在unsign方法返回false 代码: var cookie = require("co ...
- fetch上传cookie数据方法
Fetch 请求默认是不带cookie的.需要设置fetch的第二个参数: 先来看下,请求头部信息Request method - 使用的HTTP动词,GET, POST, PUT, DELETE, ...
- Cookie 路径在本机测试及服务器部署,在浏览器处理方式上的不同
Table of Contents 1 问题场景 2 解决过程 2.1 cookie是否设置成功 2.2 cookie是否上传到服务器 3 总结 1 问题场景 最近在学用Python进行web开发,写 ...
随机推荐
- 程序跳转到访问一个确定的地址0x100000
用函数指针 把这个确定的地址转化成一个函数指针 这就明白了程序中调用函数的意义 测试代码如下: #include <stdio.h> void getMemory() { printf(& ...
- IT 相关期刊
码农周刊查阅地址: http://weekly.manong.io/issues/ 快乐码农查阅地址: http://www.codeceo.com/article/category/weekly
- bootstrap模态框Esc键不关闭
项目开发时很多时候会需要用到弹出框,而且很多框架都有自己的弹出框,比较现在很流行的bootstrap就有模态框(model). 很多时候这东西用起来非常方便,可以为开发省去很多自己定义的时间!最近项目 ...
- java mvc web 项目web.xml头改错了,死活加载不上springMvc的jar
Description Resource Path Location TypeOne or more constraints have not been satisfied. ...
- 二、Spring——AoP
AOP概述 AOP是OOP的有益补充,他为程序开发提供了一个崭新的思考角度,可以将重复性的横切逻辑抽取到统一的模块中,通过OOP的纵向抽象和AOP的横向抽取,程序才能真正解决复杂性代码问题. Spri ...
- 从头来之【图解针对虚拟机iOS开发环境搭建】
1.下载Mac OSX10.9. 点击下载 2.下载VMware Workstation 10,点击下载,网页中包含序列号.安装VM. 3.VM10-MacOS补丁.用于创建苹果虚拟机. 安装VM就不 ...
- BlockingQueue深入分析
1.BlockingQueue定义的常用方法如下 抛出异常 特殊值 阻塞 超时 插入 add(e) offer(e) put(e) offer(e,time,unit) 移除 remove() p ...
- 整合Apache+PHP教程
首先修改Apache的配置文件,让Apache支持解析PHP文件,Apache配置文件在Apache安装目录的conf目录下的httpd.conf,打开此文件, 找到#LoadModule,在这个下面 ...
- Chap6: question 46 - 48
46. 求 1+2+ … +n. 要求:不用乘除法.for.while.if.else.switch.case 以及条件判断语句(A?B:C). a. 利用构造函数求解 #include <io ...
- 18. Word Ladder && Word Ladder II
Word Ladder Given two words (start and end), and a dictionary, find the length of shortest transform ...