Files
sodalive-ios/SodaLive/Sources/Utils/Utils.swift
Yu Sung c8ea7acb2e 라이브, 콘텐츠, 채널 공유하기
- 파라미터 키, 값 각각 인코딩 적용
2025-03-07 03:53:33 +09:00

18 lines
404 B
Swift

//
// Utils.swift
// SodaLive
//
// Created by klaus on 3/7/25.
//
import Foundation
func createOneLinkUrlWithURLComponents(params: [String: String]) -> String? {
var components = URLComponents(string: "https://voiceon.onelink.me/RkTm")
components?.queryItems = params.map { key, value in
URLQueryItem(name: key, value: value)
}
return components?.url?.absoluteString
}