PHP Post twitter API ile çalışma

0 Cevap php

Im hesabıma bir favori eklemek için aşağıdaki PHP kullanmaya çalışıyor:

<?php
    if(isset($_POST['submit'])) {
    $fav = $_REQUEST['fav'];
    $connection->post('favorites/create', array('id' => $fav));
    echo "<div style='padding-bottom: 5px; color: #0099FF;'>Fav Created Successfully.</div>";

    }
?>

Aşağıdaki form ile:

<form id="fav" method='post' action='index.php'>
    <input type="text" style="width: 346px;" name="fav" id="fav" ></input>
    <input type="submit" value="Fav This!" name="submit" id="submit" />
</form>

Onun herkes onunla yanlış bir şey yerinde mi, bir favori yaratmak değil?

PS: Ben OAuth API kullanıyorum:

 $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);

0 Cevap