Skip to main content

Global Privacy Policy

info
  • Starting from NAM SDK 6.1.0, parameters have been added to support global privacy policies such as GDPR and CCPA.
  • The user consent process must be completed before making an ad request.

GDPR

  • To comply with GDPR (General Data Protection Regulation), you must obtain user consent through a Consent Management Platform (CMP).
  • The SDK will automatically request the information set in the CMP from the server based on the IAB TCF v2.0 specification.

Example Configuration

GfpSdk.setUserProperties(
GfpSdk.getUserProperties()
.buildUpon()
.childDirectedTreatment(true)
.underAgeOfConsent(true)
// ... Set other user information such as gender, country, etc.
.build()
)
  • underAgeOfConsent (Tag For Under Age)

Indicates whether ad requests are for users who are not adults.

  • childDirectedTreatment (Tag For Child Directed Treatment)

Indicates whether the page or app should be treated as a child-directed service under the Children's Online Privacy Protection Act (COPPA).