pumpio: Changed nonce for oAuth from md5 to sha1 - hopefully now more posts come through

This commit is contained in:
Michael Vogel 2013-07-15 06:56:23 +02:00
parent 37940d0070
commit e7f5f0cf20
1 changed files with 3 additions and 2 deletions

View File

@ -1013,7 +1013,8 @@ class oauth_client_class
{
$values = array(
'oauth_consumer_key'=>$this->client_id,
'oauth_nonce'=>md5(uniqid(rand(), true)),
//'oauth_nonce'=>md5(uniqid(rand(), true)),
'oauth_nonce'=>sha1(uniqid(mt_rand(), true).uniqid(mt_rand(), true)),
'oauth_signature_method'=>$this->signature_method,
'oauth_timestamp'=>time(),
'oauth_version'=>'1.0',
@ -2173,4 +2174,4 @@ class oauth_client_class
*/
?>
?>