ttwitter.php 790 B

123456789101112131415161718192021
  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' => env('TWITTER_CONSUMER_KEY'),
  14. 'CONSUMER_SECRET' => env('TWITTER_CONSUMER_SECRET'),
  15. 'ACCESS_TOKEN' => env('TWITTER_ACCESS_TOKEN'),
  16. 'ACCESS_TOKEN_SECRET' => env('TWITTER_ACCESS_TOKEN_SECRET'),
  17. ];