Uncaught TypeError: Cannot read property 'method' of undefined at HttpXhrBackend












0















I am following a tutorial about using Angular HttpInterceptor but I am getting an error when I call the handle() method



//next.handle();



Uncaught TypeError: Cannot read property 'method' of undefined at HttpXhrBackend.push../node_modules/@angular/common/fesm5/http.js.HttpXhrBackend.handle (http://localhost:4200/vendor.js:31148:17) at eval (eval at push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9), <anonymous>:1:6) at AuthInterceptorService.push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpXsrfInterceptor.push../node_modules/@angular/common/fesm5/http.js.HttpXsrfInterceptor.intercept (http://localhost:4200/vendor.js:31450:25) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpInterceptingHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptingHandler.handle (http://localhost:4200/vendor.js:31494:27) at MergeMapSubscriber.project (http://localhost:4200/vendor.js:30699:184) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._tryNext (http://localhost:4200/vendor.js:143493:27) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._next (http://localhost:4200/vendor.js:143483:18)


import { Injectable } from '@angular/core';
import { HttpInterceptor } from '@angular/common/http';

@Injectable()
export class AuthInterceptorService implements HttpInterceptor{
intercept(req,next){
console.log(req);
return next.handle();
}

}


Is there something I am doing wrong?, because the request is being logged okay.



I am using Angular version 7.0.3










share|improve this question



























    0















    I am following a tutorial about using Angular HttpInterceptor but I am getting an error when I call the handle() method



    //next.handle();



    Uncaught TypeError: Cannot read property 'method' of undefined at HttpXhrBackend.push../node_modules/@angular/common/fesm5/http.js.HttpXhrBackend.handle (http://localhost:4200/vendor.js:31148:17) at eval (eval at push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9), <anonymous>:1:6) at AuthInterceptorService.push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpXsrfInterceptor.push../node_modules/@angular/common/fesm5/http.js.HttpXsrfInterceptor.intercept (http://localhost:4200/vendor.js:31450:25) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpInterceptingHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptingHandler.handle (http://localhost:4200/vendor.js:31494:27) at MergeMapSubscriber.project (http://localhost:4200/vendor.js:30699:184) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._tryNext (http://localhost:4200/vendor.js:143493:27) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._next (http://localhost:4200/vendor.js:143483:18)


    import { Injectable } from '@angular/core';
    import { HttpInterceptor } from '@angular/common/http';

    @Injectable()
    export class AuthInterceptorService implements HttpInterceptor{
    intercept(req,next){
    console.log(req);
    return next.handle();
    }

    }


    Is there something I am doing wrong?, because the request is being logged okay.



    I am using Angular version 7.0.3










    share|improve this question

























      0












      0








      0








      I am following a tutorial about using Angular HttpInterceptor but I am getting an error when I call the handle() method



      //next.handle();



      Uncaught TypeError: Cannot read property 'method' of undefined at HttpXhrBackend.push../node_modules/@angular/common/fesm5/http.js.HttpXhrBackend.handle (http://localhost:4200/vendor.js:31148:17) at eval (eval at push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9), <anonymous>:1:6) at AuthInterceptorService.push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpXsrfInterceptor.push../node_modules/@angular/common/fesm5/http.js.HttpXsrfInterceptor.intercept (http://localhost:4200/vendor.js:31450:25) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpInterceptingHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptingHandler.handle (http://localhost:4200/vendor.js:31494:27) at MergeMapSubscriber.project (http://localhost:4200/vendor.js:30699:184) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._tryNext (http://localhost:4200/vendor.js:143493:27) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._next (http://localhost:4200/vendor.js:143483:18)


      import { Injectable } from '@angular/core';
      import { HttpInterceptor } from '@angular/common/http';

      @Injectable()
      export class AuthInterceptorService implements HttpInterceptor{
      intercept(req,next){
      console.log(req);
      return next.handle();
      }

      }


      Is there something I am doing wrong?, because the request is being logged okay.



      I am using Angular version 7.0.3










      share|improve this question














      I am following a tutorial about using Angular HttpInterceptor but I am getting an error when I call the handle() method



      //next.handle();



      Uncaught TypeError: Cannot read property 'method' of undefined at HttpXhrBackend.push../node_modules/@angular/common/fesm5/http.js.HttpXhrBackend.handle (http://localhost:4200/vendor.js:31148:17) at eval (eval at push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9), <anonymous>:1:6) at AuthInterceptorService.push../src/app/services/authInterceptor.service.ts.AuthInterceptorService.intercept (http://localhost:4200/main.js:756:9) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpXsrfInterceptor.push../node_modules/@angular/common/fesm5/http.js.HttpXsrfInterceptor.intercept (http://localhost:4200/vendor.js:31450:25) at HttpInterceptorHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptorHandler.handle (http://localhost:4200/vendor.js:30859:33) at HttpInterceptingHandler.push../node_modules/@angular/common/fesm5/http.js.HttpInterceptingHandler.handle (http://localhost:4200/vendor.js:31494:27) at MergeMapSubscriber.project (http://localhost:4200/vendor.js:30699:184) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._tryNext (http://localhost:4200/vendor.js:143493:27) at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._next (http://localhost:4200/vendor.js:143483:18)


      import { Injectable } from '@angular/core';
      import { HttpInterceptor } from '@angular/common/http';

      @Injectable()
      export class AuthInterceptorService implements HttpInterceptor{
      intercept(req,next){
      console.log(req);
      return next.handle();
      }

      }


      Is there something I am doing wrong?, because the request is being logged okay.



      I am using Angular version 7.0.3







      angular






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 9:17









      IsaacKIsaacK

      256617




      256617
























          2 Answers
          2






          active

          oldest

          votes


















          1














          Please send req in handle



          intercept(req,next){
          console.log(req);
          return next.handle(req); <--- here
          }





          share|improve this answer
























          • Thanks @Sheik for the extra set of eyes.

            – IsaacK
            Nov 20 '18 at 9:22











          • If you are satisfied please accept the answer

            – Sheik Althaf
            Nov 20 '18 at 9:24





















          1














          try this



          intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
          console.log(req);
          return next.handle(req);
          }





          share|improve this answer
























          • thanks. I forgot that.

            – IsaacK
            Nov 20 '18 at 9:23











          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%2f53389712%2funcaught-typeerror-cannot-read-property-method-of-undefined-at-httpxhrbackend%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














          Please send req in handle



          intercept(req,next){
          console.log(req);
          return next.handle(req); <--- here
          }





          share|improve this answer
























          • Thanks @Sheik for the extra set of eyes.

            – IsaacK
            Nov 20 '18 at 9:22











          • If you are satisfied please accept the answer

            – Sheik Althaf
            Nov 20 '18 at 9:24


















          1














          Please send req in handle



          intercept(req,next){
          console.log(req);
          return next.handle(req); <--- here
          }





          share|improve this answer
























          • Thanks @Sheik for the extra set of eyes.

            – IsaacK
            Nov 20 '18 at 9:22











          • If you are satisfied please accept the answer

            – Sheik Althaf
            Nov 20 '18 at 9:24
















          1












          1








          1







          Please send req in handle



          intercept(req,next){
          console.log(req);
          return next.handle(req); <--- here
          }





          share|improve this answer













          Please send req in handle



          intercept(req,next){
          console.log(req);
          return next.handle(req); <--- here
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 '18 at 9:19









          Sheik AlthafSheik Althaf

          26717




          26717













          • Thanks @Sheik for the extra set of eyes.

            – IsaacK
            Nov 20 '18 at 9:22











          • If you are satisfied please accept the answer

            – Sheik Althaf
            Nov 20 '18 at 9:24





















          • Thanks @Sheik for the extra set of eyes.

            – IsaacK
            Nov 20 '18 at 9:22











          • If you are satisfied please accept the answer

            – Sheik Althaf
            Nov 20 '18 at 9:24



















          Thanks @Sheik for the extra set of eyes.

          – IsaacK
          Nov 20 '18 at 9:22





          Thanks @Sheik for the extra set of eyes.

          – IsaacK
          Nov 20 '18 at 9:22













          If you are satisfied please accept the answer

          – Sheik Althaf
          Nov 20 '18 at 9:24







          If you are satisfied please accept the answer

          – Sheik Althaf
          Nov 20 '18 at 9:24















          1














          try this



          intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
          console.log(req);
          return next.handle(req);
          }





          share|improve this answer
























          • thanks. I forgot that.

            – IsaacK
            Nov 20 '18 at 9:23
















          1














          try this



          intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
          console.log(req);
          return next.handle(req);
          }





          share|improve this answer
























          • thanks. I forgot that.

            – IsaacK
            Nov 20 '18 at 9:23














          1












          1








          1







          try this



          intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
          console.log(req);
          return next.handle(req);
          }





          share|improve this answer













          try this



          intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
          console.log(req);
          return next.handle(req);
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 '18 at 9:22









          Farhat ZamanFarhat Zaman

          471110




          471110













          • thanks. I forgot that.

            – IsaacK
            Nov 20 '18 at 9:23



















          • thanks. I forgot that.

            – IsaacK
            Nov 20 '18 at 9:23

















          thanks. I forgot that.

          – IsaacK
          Nov 20 '18 at 9:23





          thanks. I forgot that.

          – IsaacK
          Nov 20 '18 at 9:23


















          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%2f53389712%2funcaught-typeerror-cannot-read-property-method-of-undefined-at-httpxhrbackend%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

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter