Postman 2024 | Complete Step by Step | Getting Started for Beginners

Поділитися
Вставка
  • Опубліковано 7 лис 2024

КОМЕНТАРІ • 63

  • @pgcreation3249
    @pgcreation3249 Місяць тому +5

    I have experience in API with postman, But I need to revise everything from start because from last 2 years i didn't working on API, So I will start this Session but in advance I want to THANK YOU Sir for this Easy & Simple Course 👍 I will start & complete.

  • @web_shivam
    @web_shivam Місяць тому +2

    Thank you so much for this. I appreciate the work you're doing for the community

  • @tazbaloch2418
    @tazbaloch2418 18 днів тому

    bhai i have seen some postman videos , but your way of explaining is the best , thank you so much for a great video

    • @RaghavPal
      @RaghavPal  17 днів тому +1

      So nice of you Tazba

  • @chandrashekharb6567
    @chandrashekharb6567 12 днів тому

    Thank you Raghav, for your effort in helping people understand the concepts in a very simple way

    • @RaghavPal
      @RaghavPal  12 днів тому

      So nice of you Chandrashekhar

  • @Geead
    @Geead 3 дні тому

    This is so simplified. Thank you

  • @tteejjj
    @tteejjj 22 дні тому +1

    🎉 amazing explanation sir...... Amazing.... thanks..... what's the next step to learn after this plz suggest

    • @RaghavPal
      @RaghavPal  22 дні тому

      Thanks, can check more Postman and API tutorials here - automationstepbystep.com/

  • @owonifariajibola
    @owonifariajibola Місяць тому +1

    Thank you for this update and training....Love you

  • @andyrockstar78
    @andyrockstar78 Місяць тому

    Oh wow I was wondering when will get updated videos on postman api or rest assured. Here we have. 🎉 👏

    • @RaghavPal
      @RaghavPal  Місяць тому

      Great to know this Andy

    • @andyrockstar78
      @andyrockstar78 Місяць тому

      @@RaghavPal Like your other old video on Postman will this single video cover everything on Postman or you have planned more videos in the Postman Series

    • @RaghavPal
      @RaghavPal  Місяць тому

      Andy i made this video as there were some Interface changes in new version. Old videos are still valid and if you cannot find any topic here can check the earlier ones.

  • @saiashok28
    @saiashok28 13 днів тому +1

    Thanks for the tutorial. Do you have videos on REST Assured as well? I don't see that under your videos, so I'm asking.

    • @RaghavPal
      @RaghavPal  12 днів тому

      Yes, can check all here - automationstepbystep.com/

  • @hariharakrishnan9085
    @hariharakrishnan9085 20 днів тому +1

    Hi Raghav, Please post videos on Tableau, ETL Testing, Accessibility Testing (JAWS) and Penetration testing (Burpsuite)

    • @RaghavPal
      @RaghavPal  20 днів тому

      Sure Hari
      I will plan for this

  • @abhijeetsingh089
    @abhijeetsingh089 Місяць тому +3

    Raghav please teach us AI from scratch to Expert Level... And I can only request you because there is no one better than you and AI is the need of the hour

  • @yashtiwari2300
    @yashtiwari2300 Місяць тому

    Thank you so much Sir, I have recently completed your Postman playlist of 2022, Do I need to see this video again?

    • @RaghavPal
      @RaghavPal  Місяць тому

      Yash
      If you have completed entire 2022 playlist with hands-on, you can just watch the initial parts on GUI n features where we have some changes in new version.. Rest will be good 👍🏻

  • @aviralsinghal5937
    @aviralsinghal5937 Місяць тому

    Hello Sir
    Thank you for the amazing video. Could you please make a similar update video for docker + kubernetes?
    I think if you teach them together as well, it will he more intuitive. Thank you again sir, great stuff

  • @shubhs339
    @shubhs339 Місяць тому +1

    Please tell how to check json response is normal or dynamic.

    • @RaghavPal
      @RaghavPal  Місяць тому

      Shubh
      To check if the JSON response is static or dynamic, you can use the following methods:
      Static JSON Response
      A static JSON response is one that remains the same for every request. To check if the response is static:
      Send the same request multiple times.
      Compare the responses to see if they are identical.
      If the responses are identical, it's likely a static response.
      Dynamic JSON Response
      A dynamic JSON response is one that changes based on certain conditions, such as input parameters or user data. To check if the response is dynamic:
      Send the same request with different input parameters (e.g., different query parameters or request bodies).
      Compare the responses to see if they are different.
      If the responses are different, it's likely a dynamic response.
      Example:
      Let's say you're testing a API endpoint that returns a list of users. You send a GET request to example.com/users and receive the following JSON response:
      [
      {
      "id": 1,
      "name": "John Doe"
      },
      {
      "id": 2,
      "name": "Jane Doe"
      }
      ]
      To check if the response is static or dynamic, you can try the following:
      Send the same request multiple times and compare the responses. If they are identical, it's likely a static response.
      Send the request with different query parameters, such as example.com/users?sort=name. If the response changes, it's likely a dynamic response.

  • @mdpass913
    @mdpass913 Місяць тому

    Hi Raghav
    Thanks for this video, it's really helped me.
    Kindly help with videos to generate Postman report using Newman
    Haven't been having some difficult recently with the Newman report

    • @RaghavPal
      @RaghavPal  Місяць тому

      I will add in next lecture

  • @soloposmenu
    @soloposmenu Місяць тому +1

    Hello @RaghavPal, I am an old developer and I missed the tablets and phones as devices to be used in a REST API environment, basically stuck on Windows. i would like to migrate my windows clients to Android using REST API, but still keeping my database as I have now (basically a Ms-access db). I know is to the subject of the video you created, but I though you may point me in the correct direction. Thank you beforehand If you can read this

    • @RaghavPal
      @RaghavPal  Місяць тому +1

      Alright, let's try to craft a basic roadmap to help you migrate your Windows clients to Android using REST APIs while keeping your existing MS Access database
      Core Idea:
      You'll essentially be building a bridge between your Android app and your MS Access database. The Android app will send requests (like "get this data" or "update that record") to your REST API, and the API will handle talking to your database and sending the appropriate responses back to the app.
      Basic Steps:
      Set up a REST API Server:
      You'll need a server-side environment to host your API. Consider options like:
      Node.js with Express.js (popular and relatively easy to learn)
      Python with Flask or Django
      .NET Core Web API (if you're comfortable with C#)
      Even PHP can work if you're familiar with it
      This server will receive requests from your Android app, process them, interact with your MS Access database, and send back the results.
      Connect your API to the MS Access Database:
      You'll need a way for your server-side code to talk to your MS Access database.
      Libraries like node-adodb (for Node.js) or pyodbc (for Python) can help establish this connection
      Design your API Endpoints:
      Think about the types of operations your Android app will need to perform (e.g., fetching customer data, adding new orders, updating inventory).
      Create API endpoints (URLs) for each of these operations.
      For example:
      GET /customers to fetch a list of customers
      POST /orders to add a new order
      PUT /inventory/{id} to update inventory for a specific item
      Build your Android App:
      Use Android Studio and either Java or Kotlin to develop your app.
      Utilize libraries like Retrofit or Volley to make HTTP requests to your REST API.
      Handle the responses from the API and display the data in your app's user interface
      Example (Using Node.js with Express.js and node-adodb):
      JavaScript
      const express = require('express');
      const ADODB = require('node-adodb');
      const app = express();
      const connection = ADODB.open('Provider=Microsoft.ACE.OLEDB.12.0;Data Source=your_database.accdb;');
      app.get('/customers', async (req, res) => {
      try {
      const result = await connection.query('SELECT * FROM Customers');
      res.json(result);
      } catch (error) {
      res.status(500).json({ error: error.message });
      }
      });
      // ... other endpoints
      app.listen(3000, () => console.log('Server listening on port 3000'));
      Use code with caution.
      Important Considerations:
      Security: Make sure to implement proper security measures to protect your API and database from unauthorized access.
      Error Handling: Include robust error handling in both your API and Android app to gracefully handle any issues that might arise
      Testing: Thoroughly test your API and Android app to ensure everything works as expected
      Remember:
      This is a simplified overview. The actual implementation will involve more details and complexities.
      Break down the process into smaller, manageable tasks.
      Don't hesitate to seek help from online resources or communities.
      Let me know if you have any specific questions or would like more elaboration on any of the steps
      -

    • @soloposmenu
      @soloposmenu 26 днів тому

      @@RaghavPal Thanks so much for your reply. At the time i wrote you, i was at the hospital with recently discovered kidney problem. I had to give up my phone, I could not check on this post again. Well, I am much better and on a road to recovery and a few minutes ago I just read your full response. The pointer are superb and indeed will lead me in a new direction , that I had not considered (node.js).
      Thanks for your kindness and orientation.
      Humberto

    • @RaghavPal
      @RaghavPal  25 днів тому

      You're welcome Humberto ..Glad to hear you're on the road to recovery .. I'm thrilled that my response was helpful and opened up a new direction for you
      Take care of yourself and feel better soon
      -

    • @soloposmenu
      @soloposmenu 24 дні тому

      @@RaghavPal Thanks again for being able to share your knowledge

  • @hectormanuelmh
    @hectormanuelmh Місяць тому +1

    hi Raghav, I was following this great course but when I try to run the collection I got this error, I was looking for a fix on internot but not lucky so far, have you any idea what can I do to fix this? thanks in advance: Failed running the collection: TypeError: Cannot read properties of undefined (reading 'id')

    • @hectormanuelmh
      @hectormanuelmh Місяць тому +1

      Finally I found the issue is because I was using the web application, I installed desktop app and now everything is working, thank you very much you for this great course

    • @RaghavPal
      @RaghavPal  Місяць тому +1

      Great.. keep learning Hector

  • @gowthamravi2018
    @gowthamravi2018 Місяць тому

    Thankyou raghav sir 🎉

    • @RaghavPal
      @RaghavPal  Місяць тому

      Most welcome Gowtham

  • @ramya-s17
    @ramya-s17 19 днів тому

    Hi Raghav sir, can you please make a video of xpath parameters of API

    • @RaghavPal
      @RaghavPal  18 днів тому

      Sure Ramya, have you checked XPath related videos on the channel - automationstepbystep.com/
      ua-cam.com/play/PLhW3qG5bs-L9DloLUPwC3GdFimY5Ce_gS.html

  • @snehaswarnam5777
    @snehaswarnam5777 Місяць тому

    Thank you sir

  • @GIRIDHARASRINIVASGUNTREDDY
    @GIRIDHARASRINIVASGUNTREDDY Місяць тому

    Sir is this course about postman tool or API testing.. ?

    • @RaghavPal
      @RaghavPal  Місяць тому +1

      It's on API Testing with Postman

  • @owonifariajibola
    @owonifariajibola Місяць тому

    @Raghav
    Can you please make updates on some other tools too... Thanks 🙏🏾

    • @RaghavPal
      @RaghavPal  Місяць тому

      Sure.. let me know what you are looking for

  • @rohitshirbhate6713
    @rohitshirbhate6713 Місяць тому

    Hi Raghav,
    I'm expecting a Rest Assured tutorial similar to this Postman tutorial.

    • @RaghavPal
      @RaghavPal  Місяць тому +1

      Will upload soon Rohit

  • @andyrockstar78
    @andyrockstar78 Місяць тому

    @raghav can you please upload latest videos on rest assured. Much needed

    • @RaghavPal
      @RaghavPal  Місяць тому +1

      I will plan on this Andy

  • @abdulbasitkhan2865
    @abdulbasitkhan2865 Місяць тому

    when i set collection varaiable it does not automatically fetch the value/name in collection as shown in yours, why is this so please guide

    • @RaghavPal
      @RaghavPal  Місяць тому

      Did you save after adding the variable. please check and try again

  • @shivasand7557
    @shivasand7557 7 днів тому

    How to contact you sir

    • @RaghavPal
      @RaghavPal  6 днів тому

      Can let me know your queries here Shiva

    • @shivasand7557
      @shivasand7557 6 днів тому

      @RaghavPal Required training/classes on Mobile Testing with Browserstack.
      Can you please provide contact

    • @RaghavPal
      @RaghavPal  5 днів тому

      Shiva
      not taking live trainings now..

    • @shivasand7557
      @shivasand7557 5 днів тому

      @@RaghavPal any Videos/ Tutorial available on mobile Testing Browsestack

    • @RaghavPal
      @RaghavPal  4 дні тому

      can check all here automationstepbystep.com/