I am downloading a file which does just fine. I am then trying to parse this json to get a value out from it. This is where the error occurs. The file downloads fine I think. Here is what I have so far
func parseYoutubeVideo(json : String)
{
if let data = json.dataUsingEncoding(NSUTF8StringEncoding)
{
let newJson = JSON(data: data)
//Get the youtube video from the Json data
print("Parsing Video")
self.myVideo = newJson["video"].stringValue
//load the video
print("Video parsed: " + self.myVideo)
self.myYoutubePlayer .loadWithVideoId(myVideo)
}
}
//Function to log into the server and retrive data
func downloadVideoUrl(myUrl : String)
{
print("Downloading video")
Alamofire.request(.GET, myUrl)
.authenticate(user: "admin", password: "admin")
.validate()
.responseString { response in
print("Success: \(response.result.isSuccess)")
print("Response String: \(response.result.value)")
if(response.result.isSuccess == true)
{
self.parseYoutubeVideo(response.result.value!)
//self.parseYoutubeVideo(self.testConfigJson)
}else
{
//remove player from the view
self.myYoutubePlayer.removeFromSuperview()
}
}
}
This is what alamofire give me
Success: true
Response String: Optional("[ {\n \"video\" : \"zKevpV_Qo7A\"\n} ]")
Is there something I am missing on how to do this or am i doing this completely wrong. This is how you parse out a json array right?
Thank you for any help with this