미국 주 규정 메시지를 다른 메시지와 함께 사용하는 경우 사용 가능한 사용자 메시지 유형을 참고하여 사용자에게 다양한 메시지가 표시되는 시점을 파악하세요.
동의 연령 미만의 사용자를 위한 태그 설정
사용자가 동의 연령 미만인지 여부를 나타내려면
tagForUnderAgeOfConsent (TFUA)를 설정하세요. TFUA를 true로 설정하면 UMP SDK가 사용자에게 동의를 요청하지 않습니다. 앱의 사용자가 다양하다면 아동 사용자에 대해 이 매개변수를 설정하여 동의가 요청되지 않도록 하세요.
COPPA 및 기타 관련 규정을 준수하기 위해 필요한 경우 이 매개변수를 설정하는 것은 개발자의 책임입니다.
다음 예에서는 UMP 동의 요청에서 TFUA를 true로 설정합니다.
ConsentRequestParametersparams=newConsentRequestParameters{// Indicate the user is under age of consent.TagForUnderAgeOfConsent=true;};ConsentInformation.Update(params,(FormErrorupdateError)=>
{// ...});
동의 선택 읽기
사용자가 미국 주 규정 결정을 내린 후에는 Global Privacy Platform (GPP) 사양에 따라 로컬 스토리지에서 선택사항을 읽을 수 있습니다. 자세한 내용은 인앱 세부정보를 참고하세요.
UMP SDK는 IABGPP_GppSID 및 IABGPP_HDR_GppString 키만 채웁니다.
미국 주 규정 메시지 테스트
미국 주 규정 메시지를 테스트하려면 UMPDebugGeographyRegulatedUSStatedebugGeography를 사용하여 UMP SDK가 테스트 기기를 규제 대상 미국 주에 있는 기기인 것처럼 취급하도록 강제하세요. UMPDebugGeographyOther를 사용하여 미국 주 규정 메시지를 강제로 숨길 수도 있습니다. debugGeography에 대한 자세한 내용은 지역 강제 설정을 참고하세요.
[null,null,["최종 업데이트: 2025-08-31(UTC)"],[],[],null,["# US IAB Support\n\nSelect platform: [Android](/admob/android/privacy/us-iab-support \"View this page for the Android platform docs.\") [iOS](/admob/ios/privacy/us-iab-support \"View this page for the iOS platform docs.\") [Unity](/admob/unity/privacy/us-iab-support \"View this page for the Unity platform docs.\")\n\n\u003cbr /\u003e\n\nThis guide outlines the steps required to support the US states regulations\nmessage as part of the UMP SDK. Pair these instructions with\n[Get started](/admob/unity/privacy), which details how to get your app running\nwith the UMP SDK and set up your message. The following guidance is specific to\nthe US states regulations message.\n\nPrerequisites\n-------------\n\nBefore continuing, ensure you do the following:\n\n- Update to the latest version of the Unity plugin. For US states regulations messaging support, we recommend you to use version 8.7.0 or higher.\n- Complete [Get started](/admob/unity/privacy). Be sure to implement a privacy options entrypoint and render it if required. By completing this guide, you have an entrypoint to serve your US states regulations message to your users.\n- [Create a US states regulations message](//support.google.com/admob/answer/10860309) for apps.\n- If you're using the US states regulations message alongside other messages, consult [Available user message types](//support.google.com/admob/answer/10114020) to understand when different messages are displayed to your users.\n\nSet the tag for under age of consent\n------------------------------------\n\nTo indicate whether a user is under the age of consent, set\n`\n`[tagForUnderAgeOfConsent](/admob/unity/reference/class/google-mobile-ads/ump/api/consent-request-parameters#tagforunderageofconsent) (TFUA). When you set TFUA to `true`, the UMP SDK\ndoesn't request consent from the user. If your app has a mixed audience, set\nthis parameter for child users to ensure consent is not requested.\nIt is your\nresponsibility for setting this parameter where necessary to comply with COPPA\nand other relevant regulations.\n| **Important:** The UMP SDK does not forward the TFUA tag set on consent requests to the Google Mobile Ads SDK. You must explicitly set the `tagForUnderAgeOfConsent` or `tagForChildDirectectedTreatment` on ad requests. If you don't set the `tagForUnderAgeOfConsent` or `tagForChildDirectectedTreatment` on ad requests, the UMP SDK does not collect any information that allows Google to determine whether or not users under the age of consent use your app. For more information about data processing restrictions for these users, see [Tag an ad request from an app for child-directed treatment](//support.google.com/admob/answer/6219315).\n\nThe following example sets TFUA to true on a UMP consent request: \n\n ConsentRequestParameters params = new ConsentRequestParameters\n {\n // Indicate the user is under age of consent.\n TagForUnderAgeOfConsent = true;\n };\n\n ConsentInformation.Update(params, (FormError updateError) =\u003e\n {\n // ...\n });\n\nRead consent choices\n--------------------\n\nAfter the user has made a US states regulations decision, you can read\ntheir choice from local storage following the Global Privacy Platform (GPP)\nspec. For more details see,\n[In-App Details](https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform/blob/main/Core/CMP%20API%20Specification.md#in-app-details).\nNote that the UMP SDK only populates the `IABGPP_GppSID` and\n`IABGPP_HDR_GppString` keys.\n\nTest your US states regulations messaging\n-----------------------------------------\n\nTo test your US states regulations messaging, use the\n`UMPDebugGeographyRegulatedUSState` `debugGeography` to force the UMP\nSDK to treat your test device as if the device were located in a regulated US\nstate. You can also use `UMPDebugGeographyOther` to force suppression of US\nstates regulations messages. For more details on `debugGeography`, see\n[Force a geography](/admob/unity/privacy#force_a_geography).\n| **Note:** `UMPDebugGeographyRegulatedUSState` is only available in Unity plugin 9.4.0 or higher."]]