Fixing the No Config Error while adding new account

Open the this file app\vendor\mgp25\instagram-php\src\Request\Internal.php Search for this   public function sendLauncherSync( $prelogin) { $request = $this->ig->request(‘launcher/sync/’) ->addPost(‘_csrftoken’, $this->ig->client->getToken()) ->addPost(‘configs’, ”); if ($prelogin) { $request ->setNeedsAuth(false) ->addPost(‘id’, $this->ig->uuid); } else…

Read More