BUILD A CONTACT FORM WITH REACT (add API GATEWAY, LAMBDA and DYNAMODB directly from your Amplify)

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

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

  • @eleah2665
    @eleah2665 4 года назад +2

    Very nice. Thanks. Will see you next week!

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

    This is excellent. Thank you looking forward to the next video

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

    Hello! This is kind of a stretch since this is an old video, but I wanted to try!
    I have on my frontend similar to your code at 9:06 where you put data.
    But I run into an InvalidSignatureException SOMETIMES. Have you run in to this? Any suggestions?

  • @StephenRayner
    @StephenRayner 4 года назад +2

    Thank you, I am starting to really enjoy your videos. Appreciate all your hard work.

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

    Ur video saved my day thank you

  • @VincentFulco
    @VincentFulco 4 года назад +2

    Short and sweet, thank you.

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

    Can you please let me know how can I use aws RDS ( MSSQL) with aws appsync / amplify and how to connect with react js web application.

  • @fredrikhansen75
    @fredrikhansen75 4 года назад +2

    Lovely, thank you for making this video. I believe it will be of great use to lots of learners and curious aws discoverers! Vi el video desde una Valencia soleada :-)

  • @jaykay88888
    @jaykay88888 4 года назад +2

    Thank you so much for this amazing video! This is what I was looking for!!! I subscribed your channel! Thank you

  • @iljagonciarov8611
    @iljagonciarov8611 4 года назад +1

    Hi, don't have those resources names as variables, have only this:
    You can access the following resource attributes as environment variables from your Lambda function
    ENV
    REGION
    Maybe you have an idea why?
    Thanks for great tutorial btw

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

      had the same problem, did you find a solution?

  • @karthikmnews
    @karthikmnews 3 года назад

    Can we set a custom domain for the api end point when adding through amplify ie amplify add api option

  • @karthikmnews
    @karthikmnews 3 года назад

    Hi , with the latest amplify cli 4.32.1 , I am able to init ( this creates a cli.json file as well in amplify folder ) and add storage, api etc but when doing amplify push , get an error feature flag not initialized. Anyone else see this issue. Whats there to be initialized ? Any quick suggestions/similar experiences and solution appreciated

  • @Propepeji.flanberso
    @Propepeji.flanberso 2 года назад

    Hola Marcia, gracias por todos tus videos. Una consulta es posible trabajar con amplify localmente?

  • @Nacho2MMa
    @Nacho2MMa 4 года назад +2

    Gracias. Buena demostración.

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

    This was really helpful - thank you!

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

    Thank you so much!

  • @khandoor7228
    @khandoor7228 4 года назад +2

    Awesome, very useful thank you!

    • @foobar_codes
      @foobar_codes  4 года назад

      Great to hear that you find it useful 🌸

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

    thanks 4 u video, help-me a lot
    :)

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

    excellent content!!

  • @StephenRayner
    @StephenRayner 4 года назад +2

    I would love to see more support for typescript. How can I have these lambda functions in typescript?

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

    good job!

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

    Amazing video, thank you! Btw.. are you Argentinian? The way you say the "J" in english sounds like an argentinian person would struggle to say it ^_^

    • @foobar_codes
      @foobar_codes  3 года назад

      Im from Uruguay. Close by 🤷🏽‍♀️

  • @mrbeats7434
    @mrbeats7434 3 года назад

    at exactly 8.17 mins - that code you entered is nowhere to be found on your github code.

    • @mrbeats7434
      @mrbeats7434 3 года назад

      anyone that wants it
      app.post('/contact', function(req, res) {
      console.log(req);
      var params = {
      TableName : process.env.STORAGE_DYNAMO38FF052D_NAME,
      Item: {
      id: id(),
      name: req.body.name,
      email: req.body.email,
      message: req.body.message
      }
      }
      docClient.put(params, function(err, data) {
      if (err) res.json({ err})
      else res.json({ success: 'Contact created successfully!' })
      })
      });

    • @mrbeats7434
      @mrbeats7434 3 года назад

      I followed everything here and it didn't work.