앱 임베드 가이드
1. 연동 방식
let config = WKWebViewConfiguration()
// UA 끝에 "앱이름/버전 + 협의 토큰" 형식으로 추가 (GenserApp은 예시)
config.applicationNameForUserAgent = "MyApp/1.0.0 GenserApp"
let webView = WKWebView(frame: .zero, configuration: config)val defaultUA = webView.settings.userAgentString
// 중복 추가 방지: 이미 포함돼 있지 않을 때만 추가
if (!defaultUA.contains("GenserApp")) {
webView.settings.userAgentString = "$defaultUA MyApp/1.0.0 GenserApp"
}https://<젠서 디스커버리 주소>?embed=1 // 예시 파라미터, 실제 값은 젠서와 협의2. 적용 화면


3. 진입 버튼 배치


자주 묻는 질문
마지막 업데이트

