| Issue 610: | getUserTimeline(...) should not require to be authenticated (minor issue) | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Using Twitter4J 2.0.4:
Twitter twitter = new Twitter();
twitter.getUserTimeline("FrancoisMarot", 200, 10)
The above code does not specify any login/pwd and fails with following
exception:
Caught: java.lang.IllegalStateException: Neither user ID/password
combination nor OAuth consumer key/secret combination supplied
It should not fail because this request does not require to be
authenticated (at least in the Twitter API). But if I enter blank values
such as this:
Twitter twitter = new Twitter("", "");
twitter.getUserTimeline("FrancoisMarot", 200, 10)
the result is OK. By the way, it is a very minor issue ;)
|
|
,
May 26, 2009
Hi, It looks to be a Twitter4J side issue. I'll handle the issue with the following issue. http://yusuke.homeip.net/jira/browse/TFJ-157 Please close this ticket. You can report further Twitter4J's issues to the following list: http://groups.google.com/group/twitter4j Thanks, Yusuke |
|
,
May 26, 2009
Per comment 1 this is not a server-side issue.
Status: Invalid
|
|
,
May 26, 2009
closed |
|
|
|