i'm using service link module and tries to add twitter link as below

if (variable_get('service_links_show_twitter', 0)) {
$turl = drupal_http_request('http://tinyurl.com/api-create.php?url='. $url);
$turl = isset($turl->data) ? $turl->data : urldecode($url) ;

$links['service_links_twitter'] = theme('service_links_build_link', t('Twitter'), "http://www.twitter.com/home/?status=$turl". "+".$title, t('Share on Twitter.'), 'images/twitter.png', $nodelink);

}

but the resulted tweet as below .

 http%3A%2F%2Ftestsite%2Fbabycare%2Ffeeding%2Fmy-art-title.

whats wrong with the above code and how generating valid output like

my article title - mysite_url: http://bit.ly/68Vg1O

link|improve this question

feedback

migrated from superuser.com Dec 10 '09 at 11:39

This question came from our site for computer enthusiasts and power users.

1 Answer

Are you sure it gets a properl url from TinyURL? Can you add a print $turl; before $links['service_links_twitter']..? and see what it gives you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.