PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-pro
/
includes
/
lib
/
hybridauth
/
Thirdparty
/
OAuth
<?php /*! * This file is part of the OAuth PHP Library (https://code.google.com/p/oauth/) * * OAuth `PHP' Library is an open source software available under the MIT License. */ namespace Hybridauth\Thirdparty\OAuth; class OAuthConsumer { public $key; public $secret; public function __construct($key, $secret, $callback_url = null) { $this->key = $key; $this->secret = $secret; $this->callback_url = $callback_url; } public function __toString() { return "OAuthConsumer[key=$this->key,secret=$this->secret]"; } }
[+]
..
[-] OAuthSignatureMethodHMACSHA1.php
[edit]
[-] OAuthUtil.php
[edit]
[-] OAuthConsumer.php
[edit]
[-] OAuthRequest.php
[edit]
[-] OAuthSignatureMethod.php
[edit]