안녕하세요.
아래의 카카오톡 링크 공유 시, 공유는 정상적으로 동작이 되고 있습니다.
그런데, 사용자가 버튼 클릭 시 제가 입력한 ,URL 이 아닌 앱을 호출하고 있습니다.
제가 입력한 URL로 이동하기 위해선 별도의 설정이 필요한건가요?
- 사이트 도메인 설정까지 완료한 상태입니다.
- Android 는 버튼클릭시 정상적으로 설정한 URL 로 이동하고 있습니다.
let feedTemplateJsonStringData =
"""
{
"objectType": "feed",
"content": {
"shareTitle": "\(shareTitle!)",
"description": "\(shareContent!)",
"imageUrl": "https://test.com",
"link": {
"mobile_web_url": "\(shareLink!)",
"web_url": "\(shareLink!)",
}
},
"buttons": [
{
"title": "웹으로 보기",
"link": {
"mobile_web_url": "\(shareLink!)",
"web_url": "\(shareLink!)"
}
}
]
}
""".data(using: .utf8)!
LinkApi.shared.defaultLink(templatable: decoded) { linkResult, error in
print("linkResult ", linkResult as Any)
if let error = error {
print(error)
}
else {
print("defaultLink() success.")
if let linkResult = linkResult {
print("linkResult.url ", linkResult.url)
UIApplication.shared.open(linkResult.url, options: [:], completionHandler: nil)
}
}
}`코드`