Configure (INI file)

Account

Environment

About Behaviours

Specify the behaviours of the Bot.

MyTwitterBot = /path/to/your/project/MyTwitterBot.php

This setting equals the code below;

require_once '/path/to/your/project/MyTwitterBot.php';
$tuibotter->applyBehaviour(new MyTwitterBot());

Samples

[Account]
user = your_account
pass = your_password

[Environment]
cache = true
cacheDir = /path/to/cache/

cacheHttp = false
cacheHttpDir = /path/to/http_cache/

[Behaviours]
Class_Name = /path/to/behaviour/class.php
TuiBotter »