-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtokens.php
More file actions
25 lines (19 loc) · 918 Bytes
/
tokens.php
File metadata and controls
25 lines (19 loc) · 918 Bytes
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
<?php
// Twitter for OpenSim (not an app) v0.1.3
// Developed by devi S.A.S - http://devi.com.co
// Source code: http://github.com/deviSAS/twitter-opensim
// Commercial use not allowed. Share & Remix
/*
Add as many twitter apps as you want, also add avatars UUID allowed to use each app.
* The user only needs the consumer_key in order to tweet. The consumer secret is kept secret :)
*/
define('sid_secure', '23dia2342dasl'); // Change this to a random string
define('template', 'default.php'); // Template in use
$twitter_keys = array( array('consumer_key' => 'CONSUMER_KEY_HERE',
'consumer_secret' => 'CONSUMER_SECRET_HERE',
'allowed_avatars' => array('UUID', 'UUID')), /* Allowed avatars (unused) */
/* Multiple apps :) */
array('consumer_key' => 'ABC',
'consumer_secret' => '123',
'allowed_avatars' => array('UUID', 'UUID')),
);