Grabbing tagged instagram photos in real time
问题 I'm trying to download photos posted with specific tag in real time. I found real time api pretty useless so I'm using long polling strategy. Below is pseudocode with comments of sublte bugs in it newMediaCount = getMediaCount(); delta = newMediaCount - mediaCount; if (delta > 0) { // if mediaCount changed by now, realDelta > delta, so realDelta - delta photos won't be grabbed and on next poll if mediaCount didn't change again realDelta - delta would be duplicated else ... // if photo posted