我在 iOS 上使用 Facebook SDK 3.0 来尝试将帖子安排到个人资料或页面。当我尝试不安排时,一切正常。但是,当我把以下
//scheduleDate is a NSDate between the range 10 minutes - 6 months from now
NSString *timestamp = [NSString stringWithFormat:@"%.0f", [scheduleDate timeIntervalSince1970]];
[requestToPost.parameters setObject:timestamp forKey:@"scheduled_publish_time"];
我收到错误 400和com.facebook.sdk 错误 5。
任何人都知道为什么它不起作用?