Hello,
I try to fetch a list from a user on twitter without success.
The YQL doc says :
CODEBOX
Author:
Zach Graves (zachg@yahoo-inc.com)
Description:
Twitter OAuth API
Documentation:
http://apiwiki.twitter.com/Twitter-API-Documentation
Sample Queries:
select * from twitter.lists where user='twitterapi';
select * from twitter.lists where user='twitterapi' and id='team';
So i tried the two sample queries
CODEBOX
select * from twitter.lists where user="twitterapi" and id="team" and oauth_consumer_key="<my_ock>" and oauth_consumer_secret="<my_ocs>" and oauth_token="<my_ot>" and oauth_token_secret="my_ots";
The first sample query - without the 'id' parameters - works perfectly but not the second one ( no results ).
is there a problem from YQL with the 'id' arguments ?
Thanks by advance
eric