문의 시, 사용하시는 SDK 버전 정보와 디벨로퍼스 앱ID를 알려주세요.
Faq 목록 - 10. Android ( Faq 목록 입니다 ) 먼저 확인해주세요.
공유하기 후 앱으로 공유하기 메세지를 통해 접근한 경우 key value 로 입력햇던 파라미터를 어떻게 꺼내야할까요 ?
Button(
"앱으로 보기",
Link(
androidExecutionParams = mapOf(
"category" to category,
"number" to productId
),
iosExecutionParams = mapOf(
"category" to category,
"number" to productId)
)
)
위처럼 값을 넣고
// Intent에서 데이터 추출
val intent = intent
if (Intent.ACTION_VIEW == intent.action) {
val uri = intent.data
if (uri != null) {
Timber.e("intent uri: $uri")
val intentCategory = uri.getQueryParameter("category")
val intentProductId = uri.getQueryParameter("number")
이렇게 꺼내려고 했으나 꺼내지지 않아요 …
intent?.action 으로 로그를 남겨도 null 이고 흠…
관련 메소드가 있을까요 ?