-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheyeem2koken_import_one.php
27 lines (23 loc) · 1.61 KB
/
eyeem2koken_import_one.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
<?
/////////////////////////////////////////////////////////////////////////////////////////////////
// //
// IMPORT ONE //
// //
/////////////////////////////////////////////////////////////////////////////////////////////////
// created by niz //
/////////////////////////////////////////////////////////////////////////////////////////////////
// This script transfert your one picture from your Eyeem Account to your Koken server //
/////////////////////////////////////////////////////////////////////////////////////////////////
// I'm using it with cron //
// in a shell launch this command : vi /etc/crontab : //
// Add the following line to the crontab file (will launch the script 5 minutes //
// 5 * * * * root cd [YOUR_PATH]/eyeem2koken; php -f eyeem2koken_import_one.php.php//
/////////////////////////////////////////////////////////////////////////////////////////////////
require('gps.php');
require('config.php');
require('functions.php');
require('eyeem2koken.php');
global $EyeemClientID, $EyeemClientSecret, $eyeem_token, $eyeem_username, $koken_url, $koken_token, $dir, $file, $eyeem_api_url, $koken_api_url;
// Importing
eyeem2koken();
?>