aboutsummaryrefslogtreecommitdiff
path: root/mod/twitterservice/vendors/twitter/readme.txt
diff options
context:
space:
mode:
authornickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-08 19:47:44 +0000
committernickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-08 19:47:44 +0000
commit6d63838c2e56938e88cc59d1e0a62b651ed74f96 (patch)
tree575a9f042fd1d5ac3ff700fadecdfa9a55b0792b /mod/twitterservice/vendors/twitter/readme.txt
parent368f73b6df02f2e45d2d7c0cc57a50b6dbf6eb20 (diff)
downloadelgg-6d63838c2e56938e88cc59d1e0a62b651ed74f96.tar.gz
elgg-6d63838c2e56938e88cc59d1e0a62b651ed74f96.tar.bz2
Moving Twitter Service plugin from core into the plugins directory.
git-svn-id: http://code.elgg.org/elgg/trunk@5670 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/twitterservice/vendors/twitter/readme.txt')
-rw-r--r--mod/twitterservice/vendors/twitter/readme.txt55
1 files changed, 0 insertions, 55 deletions
diff --git a/mod/twitterservice/vendors/twitter/readme.txt b/mod/twitterservice/vendors/twitter/readme.txt
deleted file mode 100644
index a01b768af..000000000
--- a/mod/twitterservice/vendors/twitter/readme.txt
+++ /dev/null
@@ -1,55 +0,0 @@
-Twitter for PHP (c) David Grudl, 2008 (http://davidgrudl.com)
-
-
-Introduction
-------------
-
-Twitter for PHP is a very small and easy-to-use library for sending
-messages to Twitter and receiving status updates.
-
-
-Project at GoogleCode: http://twitter-php.googlecode.com
-Twitter's API documentation: http://groups.google.com/group/twitter-development-talk/web/api-documentation
-My PHP blog: http://phpfashion.com
-
-
-Requirements
-------------
-- PHP (version 5 or better)
-- cURL extension
-
-
-Usage
------
-
-Create object using your credentials (user name and password)
-
- $twitter = new Twitter($userName, $password);
-
-The send() method updates your status. The message must be encoded in UTF-8:
-
- $twitter->send('I am fine today.');
-
-The load() method returns the 20 most recent status updates
-posted in the last 24 hours by you and optionally by your friends:
-
- $withFriends = FALSE;
- $channel = $twitter->load($withFriends);
-
-The returned channel is a SimpleXMLElement object. Extracting
-the information from the channel is easy:
-
- foreach ($channel->status as $status) {
- echo "message: ", $status->text;
- echo "posted at " , $status->created_at;
- echo "posted by " , $status->user->name;
- }
-
-
-Files
------
-readme.txt - This file.
-license.txt - The license for this software (New BSD License).
-twitter.class.php - The core Twitter class source.
-send.php - Example sending message to Twitter.
-load.php - Example loading statuses from Twitter.