Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would I be able to fetch all photos taken on Facebook exactly a day ago using FQL?

At the moment, I have:

SELECT src_small FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject=me()) AND created = previousDayTimeStamp

However, the UNIX TIME, which comes from:

previousDay = [iOSCalender components:NSDayCalendarUnit fromDate:self.currentDate];
previousDay.day = -1;

previousDate = [iOSCalender dateByAddingComponents:previousDay toDate:self.currentDate options:0];

NSString *previousDayTimeStamp = [NSString stringWithFormat:@"%f",
                                 [previousDate timeIntervalSince1970]];

references an exact date down to the second, which is also the case for the 'created' field from FQL. Is there a way I can chop down the time so that the most granular info is the day?

share|improve this question

1 Answer

Just calculate the number of hours into the current day, as well as the number of minutes to the hour, and then set the opposite of that to NSDateComponents

//Note: this line changes as you'll need to get Hour and Minute units as well
previousDay = [iOSCalender components:(NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit) fromDate:currentDate];
previousDay.day = -1;
previousDay.hour = (previousDay.hour * -1);
previousDay.minute = (previousDay.minute * -1);

previousDate = [iOSCalender dateByAddingComponents:previousDay toDate:currentDate options:0];

NSString *previousDayTimeStamp = [NSString stringWithFormat:@"%f",
                                  [previousDate timeIntervalSince1970]];
share|improve this answer
Did this work for you? – obuseme Nov 28 '12 at 2:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.