How to make GET request in golang

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

ความคิดเห็น • 21

  • @abhishekchauhan4332
    @abhishekchauhan4332 ปีที่แล้ว +1

    Thank you Hitesh for your Quality Courses. I am learning a lot from this and all of yours courses.

  • @arsal123
    @arsal123 11 หลายเดือนก่อน

    Thanks!

  • @manishdaga
    @manishdaga 3 ปีที่แล้ว +3

    Greate Videos i don't know why people are not watching

  • @ayushgautam6740
    @ayushgautam6740 ปีที่แล้ว

    Amazing video & Quality Content.

  • @emrekrmz6018
    @emrekrmz6018 ปีที่แล้ว

    appriciate the great content, helped me a lot thanks

  • @pranjal8707
    @pranjal8707 3 ปีที่แล้ว +1

    yea enjoyed it !!!

  • @vasuchopra5290
    @vasuchopra5290 2 ปีที่แล้ว +1

    Will you please make a video on JWT token base authentication, it will be very helpful

  • @Atoz-ob5sg
    @Atoz-ob5sg ปีที่แล้ว

    Good explanation

  • @vasudhakarri5254
    @vasudhakarri5254 2 ปีที่แล้ว

    Thanks, easy to understand

  • @atag143
    @atag143 ปีที่แล้ว +1

    hi hitesh where is nodejs server code , please share the link

  • @mahek3267
    @mahek3267 3 หลายเดือนก่อน +1

    provide local host directory file that mention in previous vd and this vd

  • @elakkiyanandhini5428
    @elakkiyanandhini5428 ปีที่แล้ว

    How to create feature flag in Go??

  • @kwizerasam7
    @kwizerasam7 3 ปีที่แล้ว

    👍🏾great

  • @rythamsharma4272
    @rythamsharma4272 11 หลายเดือนก่อน

    great

  • @keshavgarg6801
    @keshavgarg6801 5 หลายเดือนก่อน

    I think the server is down now. Cause when I send the get request then it is showing that "connection was refused by the server"

    • @aradhymishra1861
      @aradhymishra1861 หลายเดือนก่อน

      bro you have to start the server yourself on your own pc:)

  • @abdulhamidkhorajiya2256
    @abdulhamidkhorajiya2256 3 ปีที่แล้ว

    Pretty cool

  • @ramsantoshkumarkasturi2434
    @ramsantoshkumarkasturi2434 3 ปีที่แล้ว +1

    Hi sir 👍

  • @anilasoman3905
    @anilasoman3905 2 ปีที่แล้ว +1

    Thanks

  • @darshana1543
    @darshana1543 3 ปีที่แล้ว +1

    Sir Can you pls share the github link for the repository ?

  • @sinxayush
    @sinxayush 7 หลายเดือนก่อน +1

    // Express Framework Setup:
    const express = require('express')
    const app = express()
    const port = 8000
    app.use(express.json());
    app.use(express.urlencoded({extended: true}))
    // Route Handling:
    app.get('/', (req, res) => {
    res.status(200).send('Hello! this is Route /')
    })
    app.get('/get', (req, res) => {
    res.status(200).json({message: "You are Route /GET"})
    })
    app.post('/post', (req, res) => {
    let myJson = req.body;
    res.status(200).send(myJson)
    })
    // Listening for Requests:
    app.listen(port, () => {
    console.log(`Listening on PORT::${port}`)
    })