我是PHP的新手。我有以下代码,我非常希望通过其API将结果作为推文发布。任何人都可以提供示例代码,我将如何能够实现该结果?我认为twitter API脚本应该在提交按钮之后。此外,当我为此创建Twitter应用程序时,他们向我询问了网址,但我该如何提供呢?因为我使用xampp服务器在端口号9999上运行PHP脚本。那么在url工作中输入localhost:9999?拜托,谢谢......
<html>
<body>
<center>
<form action="abc.php" method="POST">
<textarea rows="5" cols="50" name="typehere"></textarea><br/>
<br/>
<input type="submit" class="button" value="tweet this">
<input type="reset" class="button" value="Clear">
</from>
<?php
error_reporting(0);
$tweet = $_POST["typehere"];
echo "The following tweet has been tweeted.";
echo $tweet;
?>
</div>
</center>
</body>
</html>
答案 0 :(得分:0)
答案 1 :(得分:0)
使用Twitter API比使用它复杂一点。
你可以使用Twitter的REST Api,它就像魅力一样。在发布之前,您需要对用户进行身份验证,以及其他一些事情。
有完整而简单的文档:https://dev.twitter.com/docs/api/1.1/post/statuses/update