Page 1 of 1

Twitter tweets for a specified user

Posted: Wed Oct 12, 2011 10:15 pm
by gkeefe109

I would like to list the tweets for a particular user. Is there a simple way to do this? The url http://search.twitter.com/search.json... yields the correct results; however, I don't know how to put this in the system.
Thanks


Twitter tweets for a specified user

Posted: Thu Oct 13, 2011 9:02 pm
by maxkatz

Use a Link component for the Twitter user name

Map from_user to Link's text - that's for label.

For URL, do this.
Go to the service itself and add another from_user path, under 'result' (you will now have two)
Go to data source mapping and map the 2nd from_user to the same Link component but now select URL.
In JavaScript column, click create and insert t this:
code
return "http://twitter.com/"+value;
/code

Let me know if this helps..