This probably is due to your Wordpress trying to do pingbacks on each link in the post. Overall pingbacks are a bad thing when combining automated posting and Wordpress.
I add this to my functions.php file on my Wordpress template to disable those pingbacks.
<?php
remove_action('do_pings', 'do_all_pings', 10, 1);
?>