The docs about the sitestream envelope here:
https://dev.twitter.com/docs/streaming-apis/messages
show the "for_user" user id being delivered as a string:
-
{ -
"for_user":"1888",
-
"message":{"friends":[]}
-
} -
{ -
"for_user":"9160152",
-
"message":{"friends":[]}
-
}
This seems to actually be delivered as an integer on the wire. ie:
-
{"for_user":365158268,"message":{...}}
Guessing this is just a doc issue?
Updates
Thanks for the report.
We fixed the doc.

