In Laravel api.php file found code Route::middleware('auth:api')->get('/user', function (Request $request)...












1















In fresh installed Laravel api.php file found code



   Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});


What purpose does it have ?



I am using GET request to URL my-application/user, no any Response, is something wrong ?



Can I delete that code ?










share|improve this question























  • its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

    – user2749200
    Nov 23 '18 at 5:07
















1















In fresh installed Laravel api.php file found code



   Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});


What purpose does it have ?



I am using GET request to URL my-application/user, no any Response, is something wrong ?



Can I delete that code ?










share|improve this question























  • its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

    – user2749200
    Nov 23 '18 at 5:07














1












1








1








In fresh installed Laravel api.php file found code



   Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});


What purpose does it have ?



I am using GET request to URL my-application/user, no any Response, is something wrong ?



Can I delete that code ?










share|improve this question














In fresh installed Laravel api.php file found code



   Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});


What purpose does it have ?



I am using GET request to URL my-application/user, no any Response, is something wrong ?



Can I delete that code ?







php laravel






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 '18 at 4:13









a_minea_mine

1134




1134













  • its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

    – user2749200
    Nov 23 '18 at 5:07



















  • its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

    – user2749200
    Nov 23 '18 at 5:07

















its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

– user2749200
Nov 23 '18 at 5:07





its just an example. Sure you should be able to delete without any issue. BTW your url should be /api/user

– user2749200
Nov 23 '18 at 5:07












2 Answers
2






active

oldest

votes


















1














your-url/user url is protected by auth:api middleware



you have to pass token with http request to access this.



in your current route it will return authenticated user model data



for more read the document from laravel passport






share|improve this answer































    0















    What purpose does it have ?




    It is a sample route. It is to show, how to apply the authentication layer on api routes. And, retrieve the authenticated user.




    I am using GET request to URL my-application/user, no any Response, is something wrong ?




    You need to consider two thing here.





    1. All api routes are prefixed with /api/. So, the URL should be my-application/api/user



      https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68



    2. Since auth:api middleware is applied, it expect a token to be presented.



    If you remove the auth:api middleware and prefix with api, you could see a response.




    Can I delete that code ?




    Yes, you can delete.






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440572%2fin-laravel-api-php-file-found-code-routemiddlewareauthapi-get-user-f%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      your-url/user url is protected by auth:api middleware



      you have to pass token with http request to access this.



      in your current route it will return authenticated user model data



      for more read the document from laravel passport






      share|improve this answer




























        1














        your-url/user url is protected by auth:api middleware



        you have to pass token with http request to access this.



        in your current route it will return authenticated user model data



        for more read the document from laravel passport






        share|improve this answer


























          1












          1








          1







          your-url/user url is protected by auth:api middleware



          you have to pass token with http request to access this.



          in your current route it will return authenticated user model data



          for more read the document from laravel passport






          share|improve this answer













          your-url/user url is protected by auth:api middleware



          you have to pass token with http request to access this.



          in your current route it will return authenticated user model data



          for more read the document from laravel passport







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 '18 at 5:10









          Emtiaz ZahidEmtiaz Zahid

          1,043617




          1,043617

























              0















              What purpose does it have ?




              It is a sample route. It is to show, how to apply the authentication layer on api routes. And, retrieve the authenticated user.




              I am using GET request to URL my-application/user, no any Response, is something wrong ?




              You need to consider two thing here.





              1. All api routes are prefixed with /api/. So, the URL should be my-application/api/user



                https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68



              2. Since auth:api middleware is applied, it expect a token to be presented.



              If you remove the auth:api middleware and prefix with api, you could see a response.




              Can I delete that code ?




              Yes, you can delete.






              share|improve this answer




























                0















                What purpose does it have ?




                It is a sample route. It is to show, how to apply the authentication layer on api routes. And, retrieve the authenticated user.




                I am using GET request to URL my-application/user, no any Response, is something wrong ?




                You need to consider two thing here.





                1. All api routes are prefixed with /api/. So, the URL should be my-application/api/user



                  https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68



                2. Since auth:api middleware is applied, it expect a token to be presented.



                If you remove the auth:api middleware and prefix with api, you could see a response.




                Can I delete that code ?




                Yes, you can delete.






                share|improve this answer


























                  0












                  0








                  0








                  What purpose does it have ?




                  It is a sample route. It is to show, how to apply the authentication layer on api routes. And, retrieve the authenticated user.




                  I am using GET request to URL my-application/user, no any Response, is something wrong ?




                  You need to consider two thing here.





                  1. All api routes are prefixed with /api/. So, the URL should be my-application/api/user



                    https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68



                  2. Since auth:api middleware is applied, it expect a token to be presented.



                  If you remove the auth:api middleware and prefix with api, you could see a response.




                  Can I delete that code ?




                  Yes, you can delete.






                  share|improve this answer














                  What purpose does it have ?




                  It is a sample route. It is to show, how to apply the authentication layer on api routes. And, retrieve the authenticated user.




                  I am using GET request to URL my-application/user, no any Response, is something wrong ?




                  You need to consider two thing here.





                  1. All api routes are prefixed with /api/. So, the URL should be my-application/api/user



                    https://github.com/laravel/laravel/blob/2a483bbf60566cab6fbd0340fb3877fc09889bc3/app/Providers/RouteServiceProvider.php#L68



                  2. Since auth:api middleware is applied, it expect a token to be presented.



                  If you remove the auth:api middleware and prefix with api, you could see a response.




                  Can I delete that code ?




                  Yes, you can delete.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 23 '18 at 6:52









                  Ijas AmeenudeenIjas Ameenudeen

                  6,89732948




                  6,89732948






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440572%2fin-laravel-api-php-file-found-code-routemiddlewareauthapi-get-user-f%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                      Alcedinidae

                      Can an atomic nucleus contain both particles and antiparticles? [duplicate]