Skip to content

Commit

Permalink
added yap example
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinwhittle committed Oct 2, 2009
1 parent 29d355d commit d12724c
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions examples/yap/profiles.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?php

/**
* Yahoo! PHP5 SDK
*
* * Yahoo! Query Language
* * Yahoo! Social API
*
* Find documentation and support on Yahoo! Developer Network: http://developer.yahoo.com
*
* Hosted on GitHub: http://github.com/yahoo/yos-social-php5/tree/master
*
* @package yos-social-php5
* @subpackage yahoo
*
* @author Dustin Whittle <dustin@yahoo-inc.com>
* @copyright Copyrights for code authored by Yahoo! Inc. is licensed under the following terms:
* @license BSD Open Source License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
**/

require_once(dirname(__FILE__).'/common.inc.php');
try {
$oauthapp = YahooOAuthApplication::fromYAP(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, OAUTH_APP_ID);
}
catch (YahooOAuthApplicationException $e) {

}
?>

<style type="text/css">
div#ydoc {
display: block;
font-size: 100%;
font-family: "Calibri", "Lucida Grande", "Tahoma", Arial;
text-align: left;
vertical-align: middle;
color: #000;
background-color: #fff;
margin: 0;
padding: 0;
}
</style>

<div id="ydoc" class="yui-skin-sam">
<?php if(isset($oauthapp) && ($oauthapp instanceof YahooOAuthApplication)): ?>

<pre><?php var_dump($oauthapp->getProfile()); ?></pre>

<?php endif; ?>
</div>

0 comments on commit d12724c

Please sign in to comment.