mirror of
https://github.com/php/pecl-web_services-oauth.git
synced 2026-03-23 23:52:06 +01:00
13 lines
274 B
PHP
13 lines
274 B
PHP
<?php
|
|
|
|
function creationParams() {
|
|
return [
|
|
"oauth_token" => "a_good_token",
|
|
"oauth_timestamp" => "12345",
|
|
"oauth_nonce" => "raNdOM",
|
|
"oauth_consumer_key" => "api_key",
|
|
"oauth_signature" => "invalid",
|
|
"oauth_signature_method" => OAUTH_SIG_METHOD_HMACSHA1
|
|
];
|
|
}
|