-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
29 lines (25 loc) · 996 Bytes
/
config.php
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
<?
//Configs
///////////////////////////////////////////////////////////////////////////////////////////////
// The following lines require to be manualy modified
///////////////////////////////////////////////////////////////////////////////////////////////
//Eyeem
$EyeemClientID = 'YOUR_EYEEM_CLIENT_ID';
$EyeemClientSecret = 'YOUR_EYEEM_CLIENT_SECRET';
$eyeem_username = "YOUR_EYEEM_USERNAME";
//koken
$koken_url = 'YOUR_KOKEN_SERVER_URL';
///////////////////////////////////////////////////////////////////////////////////////////////
// The following lines will be automatically modified by setup.php
// DO NOT MODIFY THEM, browse setup.php
///////////////////////////////////////////////////////////////////////////////////////////////
//Tokens
$eyeem_token = "YOUR_EYEEM_TOKEN";
$koken_token = "YOUR_KOKEN_TOKEN";
//eyeem2koken
$dir = getcwd().'/img/';
$file = 'last.txt';
//API URLs
$eyeem_api_url = 'https://api.eyeem.com/v2/';
$koken_api_url = $koken_url.'/api.php?/content';
?>