Open lucabocchiardi89 opened 8 years ago
same issue..
same issue here. Is this still working?
I have the same problem: Cannot extract login CSRF token. I use version 1.1.22 Is there a solution?
Same issue here with v1.1.22
Here's the stacktrace:
exception 'Exception' with message 'Cannot extract login CSRF token.' in /home/www/DropboxUploader.php:280
[2016-03-14 21:57:02] Stack trace:
[2016-03-14 21:57:02] #0 /home/www/DropboxUploader.php(185): DropboxUploader->extractTokenFromLoginForm('HTTP/1.1 200 OK...')
[2016-03-14 21:57:02] #1 /home/www/DropboxUploader.php(122): DropboxUploader->login()
[2016-03-14 21:57:02] #2 /home/www/run_backup.php(45): DropboxUploader->upload('/home/www...')
[2016-03-14 21:57:02] #3 {main}
For everyone that is having the same problem: I didn't fix the issue but I make it work using this other alternative: https://github.com/f4bsch/DropPHP
I have the same problem with the latest version (1.1.22). Is there any plan for solving it or should we move to other alternative libraries? I have checked out Dropbox API and DropPHP but they weren't suitable for me though.. This has been really good until it broke.
same issue
Same issue, fixed it by replacing
return $matches['token'];
with
return explode(";", explode("Set-Cookie: t=", $html)[1])[0];
and commenting out
throw new Exception('Cannot extract login CSRF token.', self::CODE_SCRAPING_LOGIN);
in dropboxUploader.php but now i'm facing a recaptcha issue
Any solution to this please?
The same problem
same problem
I get this message of error when I try to login and upload a file.
I put my token on "TOKEN": "...." but it's not working, why? thank you