Asim Liaquat
Asim Liaquat
Thanks, got it working now by manually setting the node account id.
Hi @nekromoff, I'm sorry I haven't had time to manage this repository for a while. I have merged merged the 2 PRs and tagged as v3.0.2. Also you didn't write...
Hi, The array you are passing is not correct. Please have a look at the documentation: [https://github.com/asimlqt/php-google-spreadsheet-client#retrieving-a-list-feed](https://github.com/asimlqt/php-google-spreadsheet-client#retrieving-a-list-feed) It needs to be something like the following: `$worksheet->getListFeed(["sq" => "id = 1123456"]);`
Can you please paste the code you are using?
Hi, I'm not sure your way of generating the token is correct. The method you seem to be using is for installed applications and php applications are generally classed as...
@ronakprogrammer Yes that is odd. Are you using windows? Also can you provide the full code you are using?
I did look into updating this library to v4 quite a while back when it was released but I realized that the google php sdk was so easy to use...
Yes you can do this with batch requests. See the [README](https://github.com/asimlqt/php-google-spreadsheet-client#updating-multiple-cells-with-a-batch-request) file for an example of performing batch requests. The Google spreadsheet API works based on individual cells which are...
@ronakprogrammer There's no easy way. You can perform batch updates with a cell feed but you'll need to know the row number of the cells you're updating. If you're only...
Hi @madebyrogal, This library is only for v3. I didn't even know v4 was out until now. I've noticed that they've switched to json from xml which means it will...