GoogleMobileAds Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
GADServerSideVerificationOptions
@interface GADServerSideVerificationOptions : NSObject <NSCopying>
Options for server-side verification callbacks for a rewarded ad.
-
A unique identifier used to identify the user when making server-side verification reward
callbacks. This value will be passed as a parameter of the callback URL to the publisher’s
server.
Declaration
Swift
var userIdentifier: String? { get set }
Objective-C
@property (nonatomic, copy, nullable) NSString *userIdentifier;
-
Optional custom reward string to include in the server-side verification callback.
Declaration
Swift
var customRewardText: String? { get set }
Objective-C
@property (nonatomic, copy, nullable) NSString *customRewardString;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-04 UTC."],[[["`GADServerSideVerificationOptions` provides a way to verify rewarded ad callbacks on your server."],["These options include a `userIdentifier` for user identification during callbacks and an optional `customRewardString` for custom rewards."],["Both properties are passed as parameters to the publisher's server via the callback URL."]]],["GADServerSideVerificationOptions allows setting parameters for server-side reward verification callbacks. It includes a `userIdentifier`, a unique string to identify the user during callbacks, passed as a parameter to the publisher's server. Additionally, it features an optional `customRewardString`, which can be included in the verification callback. Both properties are nullable, and are modifiable in both Swift and Objective-C. They can be used in a server-side verification callback for a rewarded ad.\n"]]