PHP Classes

File: config/ttwitter.php

Recommend this page to a friend!
  Classes of Naif Alshaye   PHP Twitter Bot   config/ttwitter.php   Download  
File: config/ttwitter.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Twitter Bot
Application to automate interactions using Twitter
Author: By
Last change:
Date: 5 years ago
Size: 606 bytes
 

Contents

Class file image Download
<?php

// You can find the keys here : https://apps.twitter.com/

return [
   
'debug' => function_exists('env') ? env('APP_DEBUG', false) : false,

   
'API_URL' => 'api.twitter.com',
   
'UPLOAD_URL' => 'upload.twitter.com',
   
'API_VERSION' => '1.1',
   
'AUTHENTICATE_URL' => 'https://api.twitter.com/oauth/authenticate',
   
'AUTHORIZE_URL' => 'https://api.twitter.com/oauth/authorize',
   
'ACCESS_TOKEN_URL' => 'https://api.twitter.com/oauth/access_token',
   
'REQUEST_TOKEN_URL' => 'https://api.twitter.com/oauth/request_token',
   
'USE_SSL' => true,
];