When testing the following URL string out in the Graph Explorer I get the expected return
me?fields=albums.limit(10){name,photos.limit(1){images}}
But when calling
FBRequestConnection.startWithGraphPath("me?fields=albums.limit(10){photos}",
parameters: nil,
HTTPMethod: "GET")
{ (connection: FBRequestConnection!,
result: AnyObject!,
error: NSError!) -> Void in
println(result)
}
It says that it's an unsupported URL. Do I need to access these properties via the 'parameters' option instead? I so, how do I go about that? I can't seem to get my head around it.
Any help is greatly appreciated
Chris