Rest API | Web Service Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ต.ค. 2024

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

  • @manirajsivasubbu4623
    @manirajsivasubbu4623 4 ปีที่แล้ว +56

    The way you teaching is awesome sir... I learnt python & Servlet & JSP from you and I have started REST API. you are explain everything very clearly. You are a great teacher ever I seen. Thank you so much sir✨

  • @sureshprajapati2797
    @sureshprajapati2797 5 ปีที่แล้ว +241

    I was daily watch your video and performers base on your video now today I have a job as a android developer .thank you very much naveen sir

    • @scanadith
      @scanadith 5 ปีที่แล้ว +5

      bro which company hired u? Do they have an interview

    • @sanathrayala2745
      @sanathrayala2745 4 ปีที่แล้ว +7

      @@scanadith lol :D

    • @nbits7433
      @nbits7433 4 ปีที่แล้ว +5

      what ever he got a job.

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

      @sake kirikue r/wooosh , understand sarcasm bro

    • @adityaaditya7286
      @adityaaditya7286 4 ปีที่แล้ว +18

      @@scanadith kindly , stop using reddit terms on the youtube to act smart which you are not.

  • @raghavgupta3168
    @raghavgupta3168 5 ปีที่แล้ว +42

    Intelligent People,
    then
    Extra Intelligent People,
    and then comes
    People with copious amount of Knowledge like "Navin Sir".
    I am ecstatically grateful to you sir.🙏

  • @prachikakade4056
    @prachikakade4056 5 ปีที่แล้ว +26

    Sir ,your trial and error method is really good. I have seen many other videos where educator simply says the correct method to use and I never understood why only this method or this way it should be done . But when you say let's see whether it will work or not and this is the error for that this is the solution it help me alot in better understanding .thank you .

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

      Thats what make him unique!

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

      Can u tell me if i need to learn Jersey or not

  • @kalpanabejawada2451
    @kalpanabejawada2451 5 ปีที่แล้ว +51

    If given an option, I would like to give 15 likes for this amazing tutorial. Always grateful to you sir.

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

      You can alway create 25 accounts and do so mate 😸

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

    Probably the best tutorial on TH-cam on Rest Api in Java EE

  • @a.s.h.o.k
    @a.s.h.o.k ปีที่แล้ว +6

    I ❤️ ur way of explanation sir. For example, first you'll tell/show the error parts🙅‍♂️ and again expressing that you can't do like this, it make a sense✅. It makes us grasp things in an efficient way.
    👏👏👏

  • @srividhyaful
    @srividhyaful 4 ปีที่แล้ว +30

    I was scouring online for a very resourceful tutorial on Rest. I thank my good time that let me land this gem of a coaching on webservices. The way the trainer expresses and articulates concepts is truly appreciable. Anyone can get the hang of an API by being his student!
    Thanks 😊

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

    Thanks a lot for the video. I happened to found this on TH-cam search and intially planned to watch it only for few minutes but later I couldn't stop myself from watching it completely.

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

    Your videos deserve LikeX10 ! You make aliens life easy at Earth!

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

    Thank you so much for the amazing teachings sir..Felt very happy , when I searched for Rest Jersey and found ur video in the search list😍😍😘😘💕💕💖

  • @javaguru5689
    @javaguru5689 4 ปีที่แล้ว +2

    REST webservices explaination , this is best video to learn REST API in Java in whole youtube . Good work .

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

    I have non engineering background, just let you know that, your tutorial was amazing, I watched many REST API lectures, this was the best for me, thank you!

  • @leoking938
    @leoking938 4 ปีที่แล้ว +5

    This is the best spring tutorial I have seen, and I am half way through. Thanks for the video.

  • @mylinhtran3591
    @mylinhtran3591 4 ปีที่แล้ว +2

    I haven't finished the video yet because it's quite a long one, but I like what you have shown so far. I will finish this tutorial soon. Just want to put a comment here before it slips my mind. Great explaination and thanks for the tutorial!!

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

    Didn't even feel like a lecture or boring... you are the best teacher in youtube for technology

  • @gowthamannarayanan9521
    @gowthamannarayanan9521 4 ปีที่แล้ว +7

    First of all very good tutorial. Highly appreciated Naveen. Have taken notes till point 17 which may be helpful to recall. Correct me if anything wrong @TELUSKO
    REST
    Rest can accept and produce global formats such as json,xml.
    It is nothing but respresentation of state of the object.
    We can cache the service if we are consuming it frequently.
    There are 4 types of request which will use usually that we can map into CRUD operations
    GET-->To retrieve the values.
    Note: If you dont mention any @Path in method level then when u frame and hit URL with resource alone then it will be called.
    POST-->Used to create\insert operations
    PUT-->Update
    Delete-->Remove
    There are several ways of implementation of REST as it is a concept. Here we have considered JERSEY.
    Creating Maven project which will import and create jersey dependencies in eclipse EE ide.
    Creating Resource.
    Will have to create class.
    Above class will have to mention @Path("employees")
    URL Eg: HTTP://host:port/applname/webapi/employees
    GET:
    Sample to get all employees
    Below shd be in method header
    @GET
    @Produces(MediaType.APPLICATION_XML)
    public List getEmployee(){
    ........
    return new ArrayList();
    }
    Note: In Employee object class we shd mention @XmlRootElement so that it acts XML return type for the service.
    URL Eg: HTTP://host:port/applname/webapi/employees
    If we enter above URL and press enter from browser, will get output in xml format.
    To produce in json format then will have mention MediaType.APPLICATION_JSON and you can add many types by separated with commas
    But for JSOn support will have to add jersey-media moxy tag in pom.xml.
    If we want to pass URL param so that will get particular\single object
    URL Eg: HTTP://host:port/applname/webapi/employee/101
    @GET
    @Path("employee/101")
    @Produces(MediaType.APPLICATION_JSON)
    public Employee getEmployee(){// we cannot pass 101 value to the method. Simply we can say it is hardcoded.
    ...
    }
    So, will have to rewrite the method logic. URL access will be same.
    HTTP://host:port/applname/webapi/employee/101
    HTTP://host:port/applname/webapi/employee/102
    @GET
    @Path("employee/{id}")
    @Produces(MediaType.APPLICATION_JSON)
    public Employee getEmployee(@PathParam("id") int id){// Id act as a place holder
    ...
    return obj.get(id);
    }
    POST:
    URL Ref: HTTP://host:port/applname/webapi/employees/employee/ pass values with body as no path param mentioned
    @POST
    @Path("employee")
    public Employee createEmployee(Employee emp){//Insert new record
    ...
    return emp;
    }
    PUT:
    URL Ref: HTTP://host:port/applname/webapi/employees/employee/101 pass values with param, so that it will be updated.
    @POST
    @Path("employee/{id}")
    public Employee updateEmployee(Employee emp){//Update
    ...
    return emp;
    }
    Notes: GET(Single record),DELETE and PUT looks same w.r.t URL. But can be differentiated using the type of request when client submits it.
    DELETE:
    URL Ref: HTTP://host:port/applname/webapi/employees/employee/101 pass values with param, so that it will be Deleted.
    @POST
    @Path("employee/{id}")
    public Employee deleteEmployee(Employee emp){//Delete
    ...
    return emp;
    }
    Notes: GET(Single record),DELETE and PUT looks same w.r.t URL. But can be differentiated using the type of request when client submits it.
    As per REST and coding standards will have to map the CRUD operations with correct HTTP request.
    However if you dont map also, according to the internal implementation it will work but still it is not recomended.

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

    This is the first time i understood why it is called as REST . No books told it so clearly as you. They just blindly write...Representational State Transfer. Now I understand from your lecture that it is a representation of the state of the object in either Json or XML. Thanks to you. God bless you.

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

    Thank you for the excellent tutorial on REST API technology. I was searching for a tutorial to understand the same. I learned a lot from your presentation and I appreciate your clear and engaging style of teaching. You made the topic easy to understand and fun to practice. I especially liked how you demonstrated the use of different HTTP methods and how they affect the resources. Thanks for your energy and efforts that you put in these videos every time. I would highly recommend your tutorial to anyone who wants to learn more about REST APIs

  • @alakendusar6321
    @alakendusar6321 4 ปีที่แล้ว +12

    It was Great Learning on this topic. I follow ur all leanings. Thanks a lot!!

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

    Tutorials are amazing. I just wanted to get a quick revision and was really effective.

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

    You are a wonderful teacher. Thank you!!

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

    Thank you for this video, i have never seen any tutorial with such a clear explanation.

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

    Thank you very much! Your videos are more than helpful!

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

    I was searching for your old video and BOMB you have integrated all in one thats really great !!!

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

    Thanks telusko implemented rest using jersey with my sql 8 version having beginner in java as coming from .net experience

  • @java4all427
    @java4all427 5 ปีที่แล้ว +13

    This is seriously good idea to include all your previous videos in a single video... appreciate your work.

  • @divyamalhotra3574
    @divyamalhotra3574 4 ปีที่แล้ว +2

    So grateful to u for these vdos. I bacame confident on java related stuff after watching ur vdos..Thanks a ton👍🏻👍🏻

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

    Crystal clear explanation .. kuddos to you Navin ...

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

    You are very amazing sir, i always love your programming lesson. I wish you for the best and thank you.

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

    I really appreciate the hard work you did! Great Job! And Thanks for making us understand very clearly.

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

    beautiful teaching
    i really love your teachings

  • @JavedAnsari-ko9cg
    @JavedAnsari-ko9cg 4 ปีที่แล้ว +2

    No comparison for u Naveen Sir...Fan of ur teaching style

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

    Sir,u provide proper explaination for everything,the way you explain also keeps me interview ready..thankyou

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

    Sir! your teaching very good. Anyone can easily understand!

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

    Thanks for the tutorial. Its really great that u explain every piece of code!

  • @deepanshu2761
    @deepanshu2761 4 ปีที่แล้ว +2

    sir this was one of an awsome tutorial i have seen till now ...thankyou sir very much ....

  • @josepatino8964
    @josepatino8964 4 ปีที่แล้ว +4

    Incredible video, you teach everything we need to know and a little bit more! Keep on the good work!

  • @QaAutomationAlchemist
    @QaAutomationAlchemist 4 ปีที่แล้ว +11

    It is really awesome and every single second is informative...
    Thanks a lot.

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

    Great content i love this... Well done!!!! Kudos

  • @masum.v
    @masum.v 4 ปีที่แล้ว +1

    Your tutorial are getting smarter day by day, like you!! Thank you for your hard work and nice useful video.

  • @nileshlasankar2180
    @nileshlasankar2180 4 ปีที่แล้ว +2

    Java Rest API is very well explained .Thank you. One thing I want to add , when we start with eclipse maven project ,artifacts will not be loaded most of the times that error can be solved by creating a dynamic web project and then converting it to maven project.

    • @PiyushSingh-em5vz
      @PiyushSingh-em5vz 4 ปีที่แล้ว

      Rest is not responsing in xml format .
      And also not showing error in cosole
      can u tell me why

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

      @@PiyushSingh-em5vz did u resolved it I am also facing same error

    • @PiyushSingh-em5vz
      @PiyushSingh-em5vz 2 ปีที่แล้ว

      @@anoopkulkarni9991 This error is due to old version try to use new version use Tomcat 10 also use everything updated version

  • @rajeevarora4543
    @rajeevarora4543 5 ปีที่แล้ว +7

    hi Navin, Thank you so much for hsaing knowledge; your session are always great. I am working on one API related project and need few trainees who are good in API so incase you like to refer few of your trainee who you feel are good then its will be great help

    • @tanmaybhayani
      @tanmaybhayani 4 ปีที่แล้ว

      trainees, but also good in API???

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

    You are such a great teacher who make us understand the concept without any complexity. Thank for this worth video

  • @Santhosh-pu8ef
    @Santhosh-pu8ef 5 ปีที่แล้ว +1

    thank you for making 2-3 hour videos sir its very usefulll no distractions

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

    best self-learning video I have ever watched. Thanks a lot.

  • @bhanuteja3910
    @bhanuteja3910 4 ปีที่แล้ว +2

    Good work keep it up. You are changing many people's life for good..

  • @school8066
    @school8066 4 ปีที่แล้ว +2

    Great work Reddy bhai....

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

    I love this chanel.

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

    Trust me, you are the best..I always come back to you after several visits

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

    Thank you so much. your teaching is very clear and simple and covers everything. thanks a lot.

  • @kiranmahajan778
    @kiranmahajan778 4 ปีที่แล้ว +9

    1. What is REST API? | Web Service - 00:05
    2. Restful Web Services | Introduction - 11:12
    3. Creating a Jersey Project in Eclipse - 15:29
    4. Running our First Rest Jersey Application - 23:59
    5. How to create a Resource Class - 32:30
    6. List as Resource - 43:02
    7. Mock Repository - 46:29
    8. Creating a Resource - 56:27
    9. How to install Postman - 01:02:25
    10. Send a Post Request - 01:07:04
    11. PathParam - 01:11:41
    12. Working with JSON - 01:19:35
    13. Mysql Repository part 1 - 01:24:56
    14. Mysql Repository part 2 - 01:33:35
    15. Consumes JSON and XML - 01:42:06
    16. Update Resource using PUT method - 01:47:45
    17. Delete Resource - 01:58:04
    18. RESTful Web Services | Recap - 02:03:46
    19. Spring Rest | Spring Boot Example - 02:11:19
    20. Spring JPA | REST - 02:23:38

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

    You're an awesome instructor.

  • @likithagunda7048
    @likithagunda7048 4 ปีที่แล้ว +2

    Needless to say, amazing content!

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

    Who said it's not good, yes it's not good .. it's awesome 😎

  • @kevinbenavides92
    @kevinbenavides92 4 ปีที่แล้ว +2

    Kick ass explanation of REST thank you. 🖖🏼

  • @p.rajesh942
    @p.rajesh942 5 ปีที่แล้ว +2

    Thanks alot Naveen sir for all ths series u r launching 🙏🙏

  • @manishbolbanda9872
    @manishbolbanda9872 4 ปีที่แล้ว +2

    You make everything so simple

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

    Great video.. I am new to REST and this video made many things just simpler.. thanks

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

    Fantastic tutorial. Love your work! Keep Going!

  • @kevklash
    @kevklash 5 ปีที่แล้ว +4

    Incredible video, keep up the great work. Thanks for sharing.

  • @factologist875
    @factologist875 4 ปีที่แล้ว

    Thank you Naveen. You explained concepts very clearly and your videos are always helpful .

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

    Your explanation extremely stupendous. Can you please start sessions on rest assured (API Automation), many people like me will update the skills in software testing.

  • @deepagajendra5703
    @deepagajendra5703 5 ปีที่แล้ว +2

    Really helpful...plz make 3 hrs video..its lyk revision/learning of whole subject in less tym..😊

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

    Very excellent 👍 keep it up.

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

    Thanks Navin, I learned a lot from this video.

  • @OpenOx999
    @OpenOx999 5 ปีที่แล้ว +2

    It's really an amazing video !! Navin Reddy sir you are superb!! Keep going

  • @pranatoshsatpati
    @pranatoshsatpati 5 ปีที่แล้ว +2

    Thank you for the tutorial sir
    Looks like sensei likes simple thanks over complicated praising

  • @苏苏牧-z5j
    @苏苏牧-z5j 3 ปีที่แล้ว

    thank you very much , it help me a lot about my work of graduation

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

    Thank you so much sir.. Really helpful..

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

    Hi Navin,u do awesome work..plz do video on OKAPI ...Will be much useful like other courses

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

    ❤ You made this complex topic so easy. Thank you!!

  • @AnkitSingh-ul9hy
    @AnkitSingh-ul9hy 3 ปีที่แล้ว

    You are the bestest teacher

  • @nitinkumarpachori688
    @nitinkumarpachori688 5 ปีที่แล้ว +10

    1000 likes for your hardwork 👍👍👍👍👍

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

    I didn't even do a single line of code to practice this :D but you taught it so well that I feel that I can make organization level application :D As always thanks for great content

  • @itachi-senpaii
    @itachi-senpaii 2 ปีที่แล้ว

    thanks a million times ...

  • @PRABHATKUMAR-hs3uw
    @PRABHATKUMAR-hs3uw 4 ปีที่แล้ว

    best video on youtube today i found ..this is damm good . #MILLION DOLLARS VIDEO #THANK YOU SIR.

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

    In entire video this "public interface AlienRespository extends CrudRepository" is awesome. Thank you sir....

    • @coffeejavalove7156
      @coffeejavalove7156 4 ปีที่แล้ว

      I am getting error here. It says Action: "Consider defining a bean of type 'com.telusko.AlianRepositor' in your configuration."
      Error 12760

  • @sitansuchoudhury538
    @sitansuchoudhury538 4 ปีที่แล้ว

    Thank u sir.i love your lecture and it is very useful for me.

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

    You are simple the awesome...😍 Its a really helpfull having all topics in single video.. 😍And your explanation makes understanding concepts very easy... 👌💻

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

    @Navin sir-you are an excellent teacher. 🙏 Thank you. Session was very worthy. Gained good knowledge on Rest API.

  • @naveen-ib5ly
    @naveen-ib5ly 5 ปีที่แล้ว +2

    awesome work bro , please keep up your good work...

  • @shaikhnafeesa6835
    @shaikhnafeesa6835 4 ปีที่แล้ว

    Very well Explained Thank you so much sir.

  • @Only-zeus
    @Only-zeus 5 ปีที่แล้ว +3

    Sir please maka lesson about Hibernate framework 🙏🙏🙏
    Love and respect from Sri lanka 🇱🇰

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

    "because I love Jason"🙃

  • @apoorveesinha8679
    @apoorveesinha8679 4 ปีที่แล้ว +8

    Thank you for providing us with such a meaningful and helpful resource in the most easily accessible way. We are truly indebted to you for your efforts to educate people with this gem of a tutorial. Also, thank you for making a successful attempt at giving relevant and easily understandable examples of concepts that we otherwise would have taken ages to learn. Keep up the good work sir.

    • @apoorveesinha8679
      @apoorveesinha8679 4 ปีที่แล้ว

      Sir XML is not working on my system..are there any specific changes that need to be made in the code shown in the video?

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

    Thank you sir ! You are an awesome teacher !

  • @GSUDHEER252
    @GSUDHEER252 4 ปีที่แล้ว

    Wonderful tutorial with clear and practical explanation

    • @Telusko
      @Telusko  4 ปีที่แล้ว

      Glad it was helpful!

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

    Thank u so much Navin sir.

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

    Awesome explanation, seeing this in 2023

  • @jesuspereiraoficial
    @jesuspereiraoficial 4 ปีที่แล้ว

    Great video tutorial!!! Thanks so much!

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

    Thanks for such great video. Please do add exception handling part as well as how to consume a rest webservice.

  • @ViswaKids
    @ViswaKids 4 ปีที่แล้ว +2

    I loved the video and its more helpful for my life Thanks a lot. Do you have any video on AWS also.

  • @hanxu4280
    @hanxu4280 4 ปีที่แล้ว +4

    hi Mr. Navee, thanks for your amazing tutorials about API coding skills. I enjoyed your course so much, but there is one bug in your method which is in the PUT method. You wrote one line of code to check the existence of an object like this: if(repo.getAlien(a1.getId()).getId()==0) {
    repo.create(a1);
    }else {
    repo.update(a1);
    }; however there is one scenario where there is an object with id=0; it cannot get updated like this. So, I think to check the existence of an object, we should loop through the table, and then see if we need to create or update. Here is the code I added here: List alienCollections=repo.getAliens();
    for(Alien alienCollection:alienCollections) {
    if( alienCollection.getId()!=a1.getId()) {
    repo.create(a1);
    break;
    }else {
    repo.update(a1);
    break;
    }
    }. I hope this helps. Thanks again for the helpful courses you uploaded.

  • @lifelongtennis712
    @lifelongtennis712 4 ปีที่แล้ว

    Navin,
    Thank you so much for the video.

  • @sajadsh8260
    @sajadsh8260 4 ปีที่แล้ว

    you are great , you teach great , i love you , really thank youuuuuuuuuuuuuuuuuuuuuuuu

  • @paulzery1733
    @paulzery1733 4 ปีที่แล้ว +2

    Hello your tutorials are awesome!! You explain so well and your examples are very clear, so easy to understand. Thank you so much. But can you please speak a little bit slower for non English native speakers. Thanks again

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

      youtube pe setting mai jake speed slow kr skte ...apne hisab se

  • @ducchibui
    @ducchibui 4 ปีที่แล้ว

    thanks so much Sir! I have learnt a lot from your videos.

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

    Great job sir!!
    I'm really thank full to u

  • @jindagi_ka_safar
    @jindagi_ka_safar 5 ปีที่แล้ว

    nice nice ......great video ....best API explanation ...very helpful.........big thanks