Closed (won't fix)
Project:
Activity Stream
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Aug 2008 at 04:30 UTC
Updated:
18 Aug 2008 at 14:47 UTC
I've got AS 6.x-1.x installed and configured for delicious and twitter. Delicious works fine. Twitter doesn't. None of my Tweets are retrieved.
I spent some time trying to debug and while I don't have a patch to offer, I have an interesting observation or two.
The bottom line seems to be that SimplePie doesn't like the Twitter feed that AS is going after. The $feed is retrieved, but has no items.
When I manually overrode the feed URL from the one AS uses to the one I see on my twitter page (user ID vs username), the items are created just fine.
// sbc debug
if ($user->feed == "http://twitter.com/statuses/user_timeline/samcharrington.rss") {
$user->feed = "feed://twitter.com/statuses/user_timeline/4579901.rss";
}
Any ideas?
Comments
Comment #1
akalsey commentedThis is a bug on Twitter's end. They're returning a blank feed. http://simplepie.org/blog/2008/08/16/twitter-bug/
Comment #2
akalsey commentedComment #3
samc commentedThanks.
Just adding the money quote from the simplepie blog, in case s/one else needs it:
I haven't pulled up the code yet, but anyone making this change should expect higher network/server load and might not want to do it on a production box.