Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- set_time_limit(0);
- date_default_timezone_set('UTC');
- require __DIR__.'/vendor/autoload.php';
- /////// CONFIG ///////
- $username = 'username';
- $password = 'password';
- $debug = true;
- $truncatedDebug = true;
- try {
- $ig = new \InstagramAPI\Instagram($debug, $truncatedDebug);
- $ig->login($username, $password);
- } catch (\Exception $e) {
- echo 'Something went wrong: '.$e->getMessage()."\n";
- exit(0);
- }
- try {
- $today = date("Y/m/d");
- $day = date("h:i");
- $userId = $ig->people->getUserIdForName('ueh');
- date_default_timezone_set('Asia/Riyadh');
- $date=date('Y-m-d H:i:s');
- for ($i=0; $i <= 10; $i++) {
- $ig->account->setBiography("The time is " . date("h:i") . " and Today is " . date("Y/m/d"));
- sleep(60);
- }
- }
- catch (\Exception $e) {
- echo 'Something went wrong: '.$e->getMessage()."\n";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement