Im using javascript to load my last “x” posts.
I want to have a option where i want to include only my tweets from selected profile, not conversation and replies from other.
This is the method which im using:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 30000,
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'default'
}
}).render().setUser('cancer').start();
</script>