I am trying to get the next page of a users home feed on Facebook using an SLRequest with the url retrieved from the JSON response.
The code I'm using for this is:
SLRequest *request = [SLRequest requestForServiceType:SLServiceTypeFacebook requestMethod:SLRequestMethodGET URL:[NSURL URLWithString: feedString]
parameters:@{ }];
SLAppDelegate *appDelegate =
[[UIApplication sharedApplication] delegate];
request.account = appDelegate.facebookAccount;
// perform request and parse response or display errors
[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
However, I am getting an error in the response. The error is: Could not parse '1360694806?access_token=[accessTokenCharacters]' into a date or time. 2013-02-12 20:45:37.922 getRequests[6387:b107] InvalidArgumentException
An example url that is causing my problem is "https://graph.facebook.com/11110000/home?access_token=[someAccessToken]&limit=25&until=1360694806"
Could someone explain how to use a URL of this type with SLRequest for facebook in iOS6?
Thanks