Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcurtis committed Mar 23, 2010
0 parents commit 4d41036
Show file tree
Hide file tree
Showing 3 changed files with 1,121 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README
@@ -0,0 +1,23 @@
PHP utility library for accessing the Yahoo Mail Webservice with OAuth.

Usage:

<?php
require_once 'inc/ymclient.inc';

$ymc = new YMClient(
YOUR_OAUTH_CONSUMER_KEY,
YOUR_OAUTH_CONSUMER_SECRET,
YOUR_CALLBACK_URL
);

try {
$res = $ymc->ListFolders(new stdclass());
}

catch(YMClientException $e) {
// Do what you will...
}
?>


0 comments on commit 4d41036

Please sign in to comment.