opauth/doyoubuzz

DoYouBuzz strategy for Opauth

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

pkg:composer/opauth/doyoubuzz

dev-master 2014-08-10 19:43 UTC

This package is not auto-updated.

Last update: 2025-10-07 12:16:17 UTC


README

Opauth strategy for DoYouBuzz authentification

Implemented based on http://doc.doyoubuzz.com/dyb/oauth

Getting started

cd path_to_opauth/Strategy
git clone https://github.com/rockshappy/opauth-doyoubuzz.git DoYouBuzz

Strategy configuration

Required parameters:

<?php
'OAuth' => array(
	'consumer_key' => 'YOUR CONSUMER KEY',
	'consumer_secret' => 'YOUR CONSUMER SECRET',

	'request_token_url' => 'http://OAUTH_SERVER/oauth/request_token',
	'access_token_url' => 'http://OAUTH_SERVER/oauth/access_token'
)

See OAuth.php for optional parameters.

Dependencies

tmhOAuth requires hash_hmac and cURL.
hash_hmac is available on PHP 5 >= 5.1.2.

Reference

License

Opauth-OAuth is MIT Licensed
Copyright © 2012 U-Zyn Chua (http://uzyn.com)

tmhOAuth is Apache 2 licensed.