本土发布文章到twitter和facebo Twitter OAuth the easy way – simple post to twitter script

本地发布文章到twitter和facebo Twitter OAuth the easy way – simple post to twitter script

After Twitter introduced mandatory authentication with OAuth, many of the current scripts for posting content to Twitter don’t work anymore.

 

OAuth can be great for more advanced authentication, but for a simple post to twitter script, it seems like a little overkill.

 

In this post you’ll learn how to create a simple script that uses a quick and dirty version of OAuth for posting new tweets to Twitter.

 

How to create a simple script

 

Simplified, Twitter OAuth involves sending both application tokens and user tokens back and forth between your site and Twitter.

 

If you want to authenticate multiple users, you need a full OAuth implementation, but if you only want a script that sends tweets from your site or application, the good news is that all the authentication tokens and keys can be reused, which makes it possible to build a very simple script, as long as you just get the required tokens and keys once .

 

To get the required key and tokens you need to carefully follow the next steps

 

Step 1 – Register your application

 

First you need to register your application at Twitter here. (http://dev.twitter.com/apps/new)

 

Please notice that you need to log in to Twitter at the start of the Application  registration process. The account that you’re logging in to, is naturally also the twitter account that you’re application can post tweets to.

 

 

本土发布文章到twitter和facebo Twitter OAuth the easy way – simple post to twitter script

 

 

Filling in the form is pretty straightforward.

 

The only special requirement for our purpose is set Default Access type to “Read & write”, so your application is allowed to post tweets to twitter

 

 

Step 2 – Consumer secret and Consumer key

 

When your application is registered by Twitter, you also have all the required keys for your script.

You find the consumer keys here:

 

View Your Applications -> Edit Details

 

The consumer keys can be found at the last part of the page

 

Step 3 – Access token and Access token secret

 

You find the Access token and Access token secret by clicking on the “My Access token” link in the right menu.

When you have the four keys/tokens:

 

Consumer secret

Consumer key

Access token

Access token secret

 

You’re ready to proceed

 

Step 4 – Twitter OAuth class

 

To connect to twitter using OAuth we’ll be using the brilliant Abraham Twitter OAuth class. The Abraham twitter OAuth class has a lot of overhead enabling more advanced authentication than is required for this script. You only need the two files “OAuth.php”  and “twitteroauth.php”.

 

You can download the two files directly here. (或者附件:twitteroauth.zip)

 

When you have downloaded the files, and uploaded them on your server, you’re ready for the last step

 

Step 5 – Post to twitter script

 

Having the required access tokens, keys and the Twitter OAuth class, it’s a piece of cake to build a script that posts messages to twitter.

 

You just need to insert the required keys and the path to the twitteroauth.php file in the script below, and then you’re up and running.

 

 

<?php
$consumerKey    = '<insert your consumer key';
$consumerSecret = '<insert your consumer secret>';
$oAuthToken     = '<insert your access token>';
$oAuthSecret    = '<insert your token secret>';

require_once($_SERVER['DOCUMENT_ROOT'].'/<insert path to twitteroauth>/twitteroauth.php');

// create a new instance
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);

//send a tweet
$tweet->post('statuses/update', array('status' => 'Hello World'));
?>
 

 

Conclusion

 

The process for getting this script up and running might be a little  complex, but you only have to go through the process once, and then you have a very simple to use script for sending tweets to twitter from a PHP script.

 

 

来源:http://tips4php.net/2010/12/twitter-oauth-the-easy-way-simple-post-to-twitter-script/

 

参考:

https://dev.twitter.com/apps (创建apps账户)

https://dev.twitter.com/docs/application-permission-model (使用文档)

https://dev.twitter.com/docs/twitter-libraries (各种语言的操作开源文件)

 

附件 twitter-full- 提供更多的操作。来源:https://github.com/themattharris/tmhOAuth

 

 

另外还有一个方法就是利用第三方网站

 

这里推荐twitterfeed.com,因为他完全免费。

 

创建一个账户以及rss feed 就可以了,他会定时提交feed到facebook和twitter。