How can I save data in unpublic google spreadsheet in PHP without using Zend Gdata lib?
I can’t use Zend libs, as it’s shown on google tutorials, because the php server on which I’m running the script is php v. 5.0.4.
I tried to find a solution using cUrl, but I can’t omit the problem with authentication when doc is unpublic.
How can I do it? If anyone has attempted it, please share the solution.
How can I save data in unpublic google spreadsheet in PHP without using Zend
Share
I have found out solution using curl and by creating a form for the google’s spreadsheet.
For prepared spreadsheet you have to create a form, without options: Require sign-in to view this form and Automatically collect respondent’s username.
Then check, using f.e. firebug, the form post uri and post data and use it to following script:
May not be the most perfect solution but it works. 🙂