TweetStream: Can you use multiple parameters in one string?
in
Contributed Library Questions
•
2 years ago
I want to be able to specify parameters for both "follow" and "track" in the TweetStream call below
TweetStream s = new TweetStream(this, "stream.twitter.com", 80, "1/statuses/filter.json?follow=userID", "mytwitterid", "mytwitterpassword");
How do you do this? I tried using ?follow=userID, ?track=red,blue,green and nothing works.
TweetStream s = new TweetStream(this, "stream.twitter.com", 80, "1/statuses/filter.json?follow=userID", "mytwitterid", "mytwitterpassword");
How do you do this? I tried using ?follow=userID, ?track=red,blue,green and nothing works.
1