source: sandbox/2.4-expresso-api/prototype/library/oauth2/server/examples/mongo/token.php @ 5888

Revision 5888, 392 bytes checked in by cristiano, 12 years ago (diff)

Ticket #2598 - implementação base REST + oauth

  • Property svn:executable set to *
Line 
1<?php
2
3/**
4 * @file
5 * Sample token endpoint.
6 *
7 * Obviously not production-ready code, just simple and to the point.
8 *
9 * In reality, you'd probably use a nifty framework to handle most of the crud for you.
10 */
11
12require "lib/MongoOAuth2.php";
13
14$oauth = new MongoOAuth2();
15try {
16        $oauth->grantAccessToken();
17} catch (OAuth2ServerException $oauthError) {
18        $oauthError->sendHttpResponse();
19}
Note: See TracBrowser for help on using the repository browser.