How can parse this string :
http://www.ha***ay.ir/pa***nt/result_false.php?error=Canceled%20By%20User
I tried using the code given below for converting the given string to a dictionary. But I got this error :
The data couldn’t be read because it isn’t in the correct format.
This is my code :
func webViewDidFinishLoad(_ webView: UIWebView) {
print("finish loading")
let yourTargetUrl = webView.request?.url?.absoluteString
print(yourTargetUrl!)
let parse = convertToDictionary(text: yourTargetUrl!)
}
func convertToDictionary(text: String) -> [String: Any]? {
if let data = text.data(using: .utf8) {
do {
return try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any]
} catch {
print(error.localizedDescription)
}
}
return nil
}