larasap.php 1.16 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<?php

return [
    'telegram' => [
        'api_token' => '',
        'bot_username' => '',
        'channel_username' => '', // Channel username to send message
        'channel_signature' => '', // This will be assigned in the footer of message
        'proxy' => false,   // True => Proxy is On | False => Proxy Off
    ],

    'twitter' => [
        'consurmer_key' => env('TWITTER_KEY', 'forge'),
        'consurmer_secret' => env('TWITTER_SECRET_KEY', 'forge'),
        'access_token' => env('TWITTER_TOKEN', 'forge'),
        'access_token_secret' => env('TWITTER_TOKEN_SECRET', 'forge'),
    ],

    'facebook' => [
        'app_id' => env('FACEBOOK_ID', 'forge'),
        'app_secret' => env('FACEBOOK_SECRET', 'forge'),
        'default_graph_version' => env('FACEBOOK_GRAPH_VERSION', 'forge'),
        'page_access_token' => env('FACEBOOK_ACCESS_TOKEN', 'forge'),
    ],

    // Set Proxy for Servers that can not Access Social Networks due to Sanctions or ...
    'proxy' => [
        'type' => '',   // 7 for Socks5
        'hostname' => '', // localhost
        'port' => '', // 9050
        'username' => '', // Optional
        'password' => '', // Optional
    ],
];