Monday, November 08, 2010 at 12:01 AM.

system.verbs.apps.twitter.unfollow

on unfollow (userToUnfollow, username=nil, password=nil) {
	<<Changes
		<<5/4/09; 12:42:25 PM by DW
			<<Created. Basic routine, no error checking. Just getting started with following and unfollowing for a little project I'm doing. Might as well create the glue. 
	local (apiurl = "http://twitter.com/friendships/destroy/" + userToUnfollow + ".xml");
	if username == nil {
		username = user.twitter.prefs.username};
	if password == nil {
		password = string (user.twitter.prefs.password)};
	tcp.httpreadurl (apiurl, 0, false, username, password, "POST")}
<<bundle //test code
	<<unfollow ("davidgregory", config.godTweets.prefs.username, config.godTweets.prefs.password)



This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.