HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //usr/share/pear/doc/oauth/examples/twitter/constants.php
<?php

/* register your own at http://twitter.com/oauth_clients */
define("TWITTER_CONSUMER_KEY","6GeLhVhmE2Oyrjrh0H81Q");
define("TWITTER_CONSUMER_SECRET","WWoyqmAsRhvjK20KU0iUzK9D0YOjLcn8JpAPTUzfY");

/* API URL's */
define("TWITTER_OAUTH_HOST","https://twitter.com");
define("TWITTER_REQUEST_TOKEN_URL",TWITTER_OAUTH_HOST."/oauth/request_token");
define("TWITTER_AUTHORIZE_URL",TWITTER_OAUTH_HOST."/oauth/authorize");
define("TWITTER_ACCESS_TOKEN_URL",TWITTER_OAUTH_HOST."/oauth/access_token");
define("TWITTER_PUBLIC_TIMELINE_API",TWITTER_OAUTH_HOST."/statuses/public_timeline.json");
define("TWITTER_UPDATE_STATUS_API",TWITTER_OAUTH_HOST."/statuses/update.json");

define("TWITTER_UPDATE_PROFILE_BG_API", "http://api.twitter.com/1/account/update_profile_background_image.json");

define('OAUTH_TMP_DIR', function_exists('sys_get_temp_dir') ? sys_get_temp_dir() : realpath($_ENV["TMP"]));

?>