Add data to Google Sheet using App Script || Hemendra

Поделиться
HTML-код
  • Опубликовано: 8 янв 2025

Комментарии • 48

  • @muhummedrabbani5649
    @muhummedrabbani5649 6 месяцев назад

    thank you so much bro, i had done the most silly mistake of assuming sheet name == filename. and was stuck debugging for over a week. when I saw your step-by-step walkthrough, I realized my mistake.

  • @OmarSiroco
    @OmarSiroco Год назад +1

    You`re a life saver, Thank you

  • @ontradingx
    @ontradingx Год назад +1

    Hello Hemendra, good job, this is great. Congratulations

  • @itrustme4174
    @itrustme4174 3 года назад +5

    Very nice explanation..!
    Can you please do one video for updating the sheet rows and deleting the rows !

    • @HemendraV
      @HemendraV  3 года назад +5

      Sure. I will do it. Thanks for the suggestion.

  • @ombhandari6148
    @ombhandari6148 2 года назад

    Thank you sir
    Your video helped me.please continue with these tutorials🤩🤩

  • @rafi_45
    @rafi_45 2 года назад

    Thank you so much sir. Subbed.

  • @RajinderMaini
    @RajinderMaini 6 месяцев назад

    Hi,
    I am new to google apps-script. Had come across your video by sheer chance, and I liked it.
    I want to learn more about GAS (google apps script) and how to deploy it for web/mobile applications.
    Please guide me to grow.

  • @jijeeshpadmanabhan350
    @jijeeshpadmanabhan350 2 года назад

    Very useful. thank you sir

  • @matiasacevedo9251
    @matiasacevedo9251 Год назад +1

    Thanks for the video, but when I try to make a POST request, I have problems with CORS.

  • @olmzy5812
    @olmzy5812 5 месяцев назад

    nice video👍

  • @ildealcaide
    @ildealcaide 2 года назад +5

    hello thanks for the video. When you run the script, it show you "TypeError: Cannot read property "parameter" from undefined. I have the same error. What you do for run correctly the script?

  • @mohscode219
    @mohscode219 2 года назад

    It worked me ...thank you...

  • @abdullahquhtani4247
    @abdullahquhtani4247 3 года назад +4

    I have a suggestion🤔. Could you take it one step further and post and get nested array which is like relational database. For example student and courses or employee and his working days …. etc.

    • @HemendraV
      @HemendraV  3 года назад +2

      thanks . I will do it soon.

    • @abdullahquhtani4247
      @abdullahquhtani4247 3 года назад +1

      @@HemendraV Thank you . Highly appreciated.🙏

  • @nattmmo
    @nattmmo 3 года назад +1

    very nice! Thanks

  • @rajatnagpure610
    @rajatnagpure610 2 года назад +1

    Awesome!

  • @jean-baptistedebesombes3435
    @jean-baptistedebesombes3435 2 года назад +1

    Thanks Hemendra !
    I have a question if we want to push multiple rows of data from a a json with several entries as the actual script only work with one row, how would you amend you code to to that ?
    Best r.

  • @idanplaut32
    @idanplaut32 2 года назад

    Thanks for the video
    What about sending api from sheet.
    Not a manual changed cells but cells that changed by formulas?

  • @melaosp
    @melaosp 2 года назад

    congratulations, how would you have an api that had query, update and insertion?

  • @kylebelford7635
    @kylebelford7635 2 года назад

    Hi! Hemendra, thank you for the videos! How would you filter the results?

  • @nattmmo
    @nattmmo 3 года назад +1

    How does it work with cUrl PHP

  • @matheusasilva1170
    @matheusasilva1170 2 года назад

    Very good video helped a lot.
    I would like to save an image as well, I saw that google drawings allows saving, publishing and getting an html code that can be used in HTML projects. Could you help me create a script that also saves images?
    Thanks

  • @SedoSan
    @SedoSan 2 года назад +2

    I did exactly the same as you did but when I run the code I get an error: "TypeError: Cannot read property 'parameter' of undefined". What would be the problem?

    • @yodahunter1412
      @yodahunter1412 2 года назад

      JUST Copy This, And it will work
      var wbook = SpreadsheetApp.openByUrl();
      var sheet = wbook.getSheetByName("Sheet1");
      function doPost(e){
      addUser(e);
      }
      function addUser(e){
      var user = JSON.parse(e?.postData?.contents);
      sheet.appendRow([ user.Name, user.Age, user.Phone, user.Email, user.Address, user.Instagram, user.School]);
      return ContentService.createTextOutput("Sucess").setMimeType(ContentService.MimeType.TEXT);
      }

    • @OMGdon
      @OMGdon Год назад +2

      If change like:
      let action = e?.parameter?.action
      No error during run, but POST still do not work
      BTW, on video the same error
      UPD. Do not forget to redeploy after code correction. Now work!

    • @bladeknight1412
      @bladeknight1412 Год назад +1

      @@OMGdon you saved my life, I have the same error bro.

  • @dickyjayaumbara357
    @dickyjayaumbara357 Год назад

    hi thanks for video, i have problem, when i hit from my Frontend, i got CORS, can we solve the cors?

  • @teamunimarks6654
    @teamunimarks6654 2 года назад

    Hi! Hemendra, thank you for the video, I am not getting the success response when i test it in Postman. Getting result as "the Script completed but did not return anything". Can you please? I did exactly same as you did in the video.

  • @bhaviksumera
    @bhaviksumera 2 года назад

    Possible to edit data conditionally

  • @azwanmohamad3021
    @azwanmohamad3021 2 года назад +1

    How to enable the script editor? I really need help... please help me... all I got is Apps script and it say "Sorry, unable to open the file at this time. Please check the address and try again." it quite frustrating because I cannot find any video that show how to solve this problem

    • @albertozerbinati9983
      @albertozerbinati9983 2 года назад

      I'm getting the same with my post requests when trying to send data in the body of the request.
      Should work if you send your data as part of the querystring (after the ? charachter in the link, like this: [your_deploy_link]?[datakey1=data1&datakey2=data2]).
      Btw I don't think this is clean nor safe to do-I'm also getting many other problems with Apps Script-so I think I'll move to a different, serious backend.

  • @FULLUPE1
    @FULLUPE1 2 года назад

    Pls thanks so much for the video , and can you show us how to PATCH and PUT record thanks ....

  • @GLVIDEOP
    @GLVIDEOP 2 года назад

    Update delete insert?

  • @cutepetvideos196
    @cutepetvideos196 9 месяцев назад

    What about Delete data and update data. Stuck in these both

  • @esdhee
    @esdhee 2 года назад

    Hi Hemendra, can you help to create another example using a JSON Array of Object?

  • @upendharthammella5055
    @upendharthammella5055 Год назад

    Please make a video on sending 2D ArrayList Data to Google sheet, Thank you

  • @sarveshchauhan5096
    @sarveshchauhan5096 2 года назад +1

    Thanks bro

  • @tazulislam2698
    @tazulislam2698 2 года назад

    how to send multidimensional array of object? Please!

  • @jyotishkechamatkar
    @jyotishkechamatkar Год назад

    How to implement in custom form

  • @albertozerbinati9983
    @albertozerbinati9983 2 года назад

    I'm stuck on making it work when deployed with "Only myself" access.
    On the browser it prompts the Google authentication page and then it works, but I don't know how to authenticate from a generic client (in my case, an Android app): I only get 401-unauthorized response, since I don't know how to set the Authorization header (probably requires OAuth2 token??)
    Any help or resource is much appreciated!

  • @tazulislam2698
    @tazulislam2698 2 года назад

    How to post 2d array using loop? Please!

  • @Rajan-sl9ct
    @Rajan-sl9ct 3 года назад

    How to send Data (Post Request) from sheet to any URL . using app script Thanks in advance

  • @ekanshsinghal9624
    @ekanshsinghal9624 3 года назад +1

    Getting unauthorised 401

    • @albertozerbinati9983
      @albertozerbinati9983 2 года назад

      Did you set the Who has access property to Anyone, while deploying?

  • @sagarworriors1402
    @sagarworriors1402 Год назад

    this app script End point only work in postman not other platform