You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
974 B

  1. <?php
  2. // You can find the keys here : https://apps.twitter.com/
  3. return [
  4. 'debug' => function_exists('env') ? env('APP_DEBUG', false) : false,
  5. 'API_URL' => 'api.twitter.com',
  6. 'UPLOAD_URL' => 'upload.twitter.com',
  7. 'API_VERSION' => '1.1',
  8. 'AUTHENTICATE_URL' => 'https://api.twitter.com/oauth/authenticate',
  9. 'AUTHORIZE_URL' => 'https://api.twitter.com/oauth/authorize',
  10. 'ACCESS_TOKEN_URL' => 'https://api.twitter.com/oauth/access_token',
  11. 'REQUEST_TOKEN_URL' => 'https://api.twitter.com/oauth/request_token',
  12. 'USE_SSL' => true,
  13. 'CONSUMER_KEY' => function_exists('env') ? env('TWITTER_CONSUMER_KEY', '') : '',
  14. 'CONSUMER_SECRET' => function_exists('env') ? env('TWITTER_CONSUMER_SECRET', '') : '',
  15. 'ACCESS_TOKEN' => function_exists('env') ? env('TWITTER_ACCESS_TOKEN', '') : '',
  16. 'ACCESS_TOKEN_SECRET' => function_exists('env') ? env('TWITTER_ACCESS_TOKEN_SECRET', '') : '',
  17. ];