gkeefe109
Posts: 0
Joined: Wed Oct 12, 2011 10:15 pm

Twitter tweets for a specified user

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

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Twitter tweets for a specified user

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..

Return to “Issues”