Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrisnharvey/oauth1
Authorize users in your application with multiple OAuth 1.0 providers.
https://github.com/chrisnharvey/oauth1
Last synced: about 4 hours ago
JSON representation
Authorize users in your application with multiple OAuth 1.0 providers.
- Host: GitHub
- URL: https://github.com/chrisnharvey/oauth1
- Owner: chrisnharvey
- Created: 2013-03-16T10:36:07.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-28T20:27:35.000Z (over 9 years ago)
- Last Synced: 2024-08-06T04:59:32.739Z (3 months ago)
- Language: PHP
- Size: 187 KB
- Stars: 1
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OAuth 1.0 Composer Package
_Deprecated: Use [league/oauth1-client](https://github.com/thephpleague/oauth1-client)._
Authorize users with your application using multiple OAuth 1 providers.
## Supported Providers
- Dropbox
- Flickr
- Tumblr
- UbuntuOne
- Vimeo## Usage Example
In this example we will authenticate the user using Twitter.
```php
session_start();$oauth = new \OAuth1\Provider\Twitter(array(
'id' => 'CLIENT_ID',
'secret' => 'CLIENT_SECRET',
'redirect_url' => 'URL_TO_THIS_PAGE'
));if ($oauth->isCallback()) {
$oauth->validateCallback(unserialize($_SESSION['token']))
} else {
$token = $oauth->requestToken();$_SESSION['token'] = serialize($token);
$url = $oauth->authorize($token);
header("Location: {$url}");
exit;
}// Tokens
print_r($oauth->getUserTokens());// User data
print_r($oauth->getUserInfo());
```If all goes well you should see a dump of the users tokens and data.
### Calling OAuth 1 APIs using Guzzle
You can also use this package to make calls to your respective APIs
using Guzzle.```php
$client = new \OAuth1\Client('http://api.twitter.com/1.1');
$client->setProvider($oauth)
->setUserTokens($oauth->getUserTokens());echo $client->get('statuses/mentions_timeline.json')->send();
```This example should show your Twitter mentions from the API along with the headers
## Contribute
1. Check for open issues or open a new issue for a feature request or a bug
2. Fork [the repository][] on Github to start making your changes to the
`develop` branch (or branch off of it)
3. Write a test which shows that the bug was fixed or that the feature works as expected
4. Send a pull request and bug me until I merge it[the repository]: https://github.com/chrisnharvey/oauth1