python-twitter icon indicating copy to clipboard operation
python-twitter copied to clipboard

Stream Filter parameters requires a list

Open jcapde opened this issue 11 years ago • 1 comments

parameters in the Stream Filter function have to be passed in a list. Otherwise, the join funcion separates the string values digit by digit. The following does not work: api.GetStreamFilter(locations="2.1,41.1,2.3,41.5" {'locations': '2,.,1,,,4,1,.,1,,,2,.,3,,,4,1,.,5'}

The following, works: api.GetStreamFilter(locations=["2.1,41.1,2.3,41.5"]) {'locations': '2.1,41.1,2.3,41.5'}

jcapde avatar Jan 26 '14 23:01 jcapde

Same error here. Still without a solution

eufelipemateus avatar Mar 08 '22 22:03 eufelipemateus