好的,我可以确认会话处于活动状态。我可以确认令牌在 2012 年 10 月 21 日到期,所以这不是问题。当我收到类似于以下内容的响应时,我还可以确认请求已发送到 Facebook:
FB请求:0x9138950
这是我发送 facebook 请求的地方:
- (void)facebookPhotoUpload{
UIImage *postImage = combinedImage;
if(combinedImage == nil){
postImage = badgeImage.image;
}
NSLog(@"%@", [appDelegate.facebook expirationDate]);
NSMutableDictionary* params = [NSMutableDictionary dictionary];
[params setObject:strMessage forKey:@"message"];
if (postImage) {
[params setObject:postImage forKey:@"source"];
[appDelegate.facebook requestWithGraphPath:@"me/photos" andParams:params
andHttpMethod:@"POST"
andDelegate:self];
} else {
[appDelegate.facebook requestWithGraphPath:@"me/feed" andParams:params
andHttpMethod:@"POST"
andDelegate:self]; }
}
然后它到达这个函数:
- (void)requestLoading:(FBRequest *)request{
NSLog(@"Your facebook request is loading... %@", request);
}
并返回请求内存地址。太棒了,所以它工作得那么远。
但是,在此之后我没有得到其他回应...
有没有其他人遇到过这个问题?有谁知道如何解决这个问题?