I’m having this problem too. Has the v3 of Google Docs changed how folder IDs work?
My URLs looke like ?tab=oo#folders/0B_dBN4Mowt5zNWE3YTcwYmYtZjU5Yy00Y2JhLTljYTQtMzAzYjI0ZjJjNGQy
The first string after the slash – 0B_dBN4Mowt5z – is common to different folders. I cant get it working – What do we point wp-config to?
I noticed that there is a common string, actually the first 13.
But I can’t understand how used it, if you know something please tell me! Thanks!
Not sure if you are still having issues with this, but the following string in bold is what you need to use as the ID:
folders/0B-J2KpdDWsqONXY4R0VQaHY5Y1U
So your wp-config.php would look like this:
define( 'DOCSTOWP_USER', 'your_username_for_google' );
define( 'DOCSTOWP_PASS', 'your_password_for_google' );
// Folder to Pull From
define( 'DOCSTOWP_ORIGIN', '0B-J2KpdDWsqONXY4R0VQaHY5Y1U' );
// Folder to send to once published
define( 'DOCSTOWP_DESTINATION', '0B-J2KpdDWsqObWt1NnJYSGlFc2M' );
Hope this helps.
Thanks iamdangavin. Like a charm, sir.