/usr/share/doc/php5-oauth/examples/config.inc.php is in php5-oauth 1.2.3-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 | <?php
/* you get a consumer key and secret from the OAuth provider's developer resource center */
define('OAUTH_CONSUMER_KEY','your_consumer_key');
define('OAUTH_CONSUMER_SECRET','your_consumer_secret');
define('OAUTH_TMP_DIR', function_exists('sys_get_temp_dir') ? sys_get_temp_dir() : realpath($_ENV["TMP"]));
?>
|