BBATON can be applied across web and app services and is designed around the OAuth 2.0 protocol so teams can implement it easily.
Review return values, implementation structure, and evaluation points first.
Developer Guide ↗ 02 · PREPARATIONPrepare client registration, redirect URL setup, and the pre-launch checklist.
Developer Guide ↗ 03 · INTEGRATIONConnect the full flow from authorization request to callback, token exchange, and result handling.
Developer Guide ↗ 04 · LOGIN BUTTONReview the button copy and UI rules shown to end users.
Developer Guide ↗Clients do not need to rebuild their existing authentication stack. They only need to receive the required verification result, such as adult status, and connect it to service policy and UI logic.
# 1. Authorize GET https://api.bbaton.com/v2/oauth/authorize ?client_id=YOUR_CLIENT_ID &redirect_uri=https://yourapp.com/callback &response_type=code &scope=adult_check # 2. Exchange code for token POST https://api.bbaton.com/v2/oauth/token # 3. Verify — receive eligibility only GET https://api.bbaton.com/v2/verify/adult Authorization: Bearer ACCESS_TOKEN # Response { "is_adult": true, "verified_at": "2026-04-19T09:12:04Z" }
For more detailed integration guidance, refer to the Developer Guide.
Confirm the service domain, redirect URL, and verification type first.
Implement the authorization request and callback flow by following the relevant guide.
Receive the user's verification result safely.
Apply only the required eligibility values, such as adult status or student status, to service policy.
The required documents and support channels are separated by adoption stage.
Review the Preparation, Overview, Integration, and Login Button guides as one continuous flow.
Developer Guide ↗WordPress-based sites receive separate guidance for environment-specific implementation and connection procedures.
Implementation Inquiry ↗Mobile app integration can also be implemented through the guide. SDK-based and custom implementation support are handled through separate inquiry.
Support Inquiry ↗