Publi

Enviando posts a twitter

twitter-bird-6

Hace mucho tiempo leí en anieto2k una función muy interesante para twittear sin necesidad de incluir APIs tremendas. Es decir, si en mi aplicación, sólo quiero enviar twits, ¿para qué incluir algo demasiado grande? Con una pequeña función estaría todo resuelto.

El tema es que hace poco inicié un proyecto que periódicamente envía twits y necesité echar mano de esa función. Descubrí que Twitter había cambiado un poco su forma de interactuar.

Antes, podíamos enviar por GET (en la URL) el parámetro del mensaje que íbamos a postear, aunque ahora devuelve un error extraño: 413 Request Entity Too Large, más o menos es cuando la consulta que enviamos al servidor es muy grande; aunque el error nos lo da porque no encuentra el post que queremos publicar.

Para solucionarlo, tenemos que enviarlo con el método post, de la siguiente forma:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
function postToTwitter($username,$password,$message)
{
// Esta línea está modificada
    $host = "http://twitter.com/statuses/update.xml";

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $host);
    curl_setopt($ch, CURLOPT_VERBOSE, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
    curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
    curl_setopt($ch, CURLOPT_POST, 1);
// Esta línea es nueva
   curl_setopt($ch, CURLOPT_POSTFIELDS, 'status='.urlencode(stripslashes(urldecode($message))));
    $result = curl_exec($ch);
    $resultArray = curl_getinfo($ch);
    curl_close($ch);
    if($resultArray['http_code'] == "200")
    {
        echo "<br />OK! postedo en http://twitter.com/".$username."/<br />";
    }
    else
    {
        // Esto lo podemos quitar, es sólo para analizar la salida.
        print_r($resultArray);
        echo "<br />Error! ha ocurrido un problema<br />";
    }
}

Con esta versión modificada del script ya podemos twitear 🙂

Y para llamar a esta función:

postToTwitter(‘usuario’, ‘contraseña’, ‘140 letras de lo que queremos twitear’);

Foto: Free Twitter Bird Icon Set

También podría interesarte....

There are 15 comments left Ir a comentario

  1. Pingback: Bitacoras.com /

  2. Mike Rooney /
    Usando Google Chrome Google Chrome 111.0.0.0 en Windows Windows NT

    Thanks for a wonderful share. Here is the great example related to you blog. Harley davidson marlboro man jacket

  3. Jess /
    Usando Google Chrome Google Chrome 111.0.0.0 en Windows Windows NT

    Descubrí que Twitter había cambiado un poco su forma de interactuar.

    foundation services

  4. Angel17 /
    Usando Google Chrome Google Chrome 113.0.0.0 en Windows Windows NT

    I’ve never tried posting on Twitter. But, I think it’s also easy like other social media platforms. pole barn builder

  5. Jones Elizabeth /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    Awesome review, I am a major devotee to remarking on web journals to educate the web journal scholars realize that they’ve added something beneficial to the internet!.. มังงะ

  6. Adilkhatri /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    For some individuals this is the best arrangement here perceive how to do it. 먹튀검증커뮤니티

  7. Jones Elizabeth /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. I was exactly searching for. Thanks for such post and please keep it up. Great work มังงะ

  8. jackyseo1 /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    Have you ever wondered if there’s a company that combines spreading love with finding practical solutions? Look no further than The Good Heart! We are on a mission to support charities and non-profits by providing them with free marketing and sponsorships. Imagine the incredible impact this has on these organizations and the causes they champion. But here’s the exciting part – The Good Heart also scouts for products that solve everyday problems, making people’s lives better. It’s truly a company with a heart! Join the conversation and let’s discuss the remarkable work of The Good Heart in our communities and beyond. Charity

  9. jackyseo1 /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    At 3E Accounting Singapore, we specialize in company incorporation services with a strong focus on assisting business owners in selecting and appointing nominee directors. As a trusted provider of comprehensive professional services, we cater specifically to the needs of start-ups and small- to medium-sized firms. Alongside our expertise in incorporation, we also offer a breadth of knowledge in accounting, taxation, immigration, and compliance, ensuring that our cost-effective solutions deliver exceptional results that consistently surpass expectations. nominee services Singapore

  10. jackyseo1 /
    Usando Google Chrome Google Chrome 115.0.0.0 en Windows Windows NT

    I went onto your blog while centering just marginally submits. Decent procedure for next, I will be bookmarking without a moment’s delay grab your entire ascents… molokai

  11. Jones Elizabeth /
    Usando Google Chrome Google Chrome 114.0.0.0 en Windows Windows NT

    Thanks for sharing nice information with us. I like your post and all you share with us is up to date and quite informative, I would like to bookmark the page so I can come here again to read you, as you have done a wonderful job. manga

  12. Adilkhatri /
    Usando Google Chrome Google Chrome 115.0.0.0 en Windows Windows NT

    Your websites facilitate all the more each else volume is so engaging further serviceable It chooses me occur for withdraw reprise. I will in a split second snatch your rss channel to remain educated of any updates. Group tours around Baltics

  13. Adilkhatri /
    Usando Google Chrome Google Chrome 115.0.0.0 en Windows Windows NT

    DispoCars ist dabei, die größte Datenbank für Bodentransportunternehmen der Welt zu werden. Alle Daten, die von lokalen Dienstleistern eingegeben werden, werden auf zahlreiche Arten in der ganzen Welt verteilt, um Reisenden, Reisebüros und Reiseveranstaltern zu helfen, jeden Teil der Welt in Sekunden zu erreichen. dispocars

  14. Adilkhatri /
    Usando Google Chrome Google Chrome 115.0.0.0 en Windows Windows NT

    I just idea it might be a plan to post incase any other person was having issues inquiring about yet I am somewhat uncertain in the event that I am permitted to put names and addresses on here. 카지노사이트

  15. Adilkhatri /
    Usando Google Chrome Google Chrome 116.0.0.0 en Windows Windows NT

    Hello, I found your blog per Google bit looking for such kinda instructive prompt also your educate sees extremely noteworthy for me. orange county newborn photographer

Leave a Reply to Jess Cancle Reply