PATH:
home
/
letacommog
/
seneve10
/
wp-content
/
plugins
/
wpdiscuz
/
forms
/
wpdFormAttr
/
Login
/
twitter
<?php /** * The MIT License * Copyright (c) 2007 Andy Smith */ namespace wpdFormAttr\Login\twitter; class Consumer { /** @var string */ public $key; /** @var string */ public $secret; /** @var string|null */ public $callbackUrl; /** * @param string $key * @param string $secret * @param null $callbackUrl */ public function __construct($key, $secret, $callbackUrl = null) { $this->key = $key; $this->secret = $secret; $this->callbackUrl = $callbackUrl; } /** * @return string */ public function __toString() { return "Consumer[key=$this->key,secret=$this->secret]"; } }
[+]
..
[+]
Util
[-] TwitterOAuthException.php
[edit]
[-] Config.php
[edit]
[-] SignatureMethod.php
[edit]
[-] TwitterOAuth.php
[edit]
[-] Util.php
[edit]
[-] cacert.pem
[edit]
[-] HmacSha1.php
[edit]
[-] Consumer.php
[edit]
[-] Token.php
[edit]
[-] Request.php
[edit]
[-] Response.php
[edit]