Need authorization in a navigator.sendbeacon()

前端 未结 2 779
礼貌的吻别
礼貌的吻别 2021-01-13 15:12

My problem is that when i call a function who listen to the event onBeforeUnload(), i want to post a data. The problem is that my request is unauthorized. I need to add my b

相关标签:
2条回答
  • 2021-01-13 15:30

    Try this:

      let headers = {
        Authorization: 'Bearer ' + token
      };
      let blob = new Blob([JSON.stringify(infoIWantToSent)], headers);
      navigator.sendBeacon('url', blob);
    
    0 讨论(0)
  • 2021-01-13 15:43

    I find this solution :

    @HostListener('window:beforeunload', ['$event'])
      onBeforeUnload(): void {
       fetch('url', {
            keepalive: true,
            method: 'POST',
            headers: {
              'Content-Type': 'application/json',
              'Authorization': `Bearer ${token}`,
            },
            body: JSON.stringify(infoIWantToSent),
          });
    }
    

    Aparently, if we must use a token connexion, we can't use navigator.sendbeacon() https://w3c.github.io/beacon/#sec-sendBeacon-method It work for almost all the cases, but not when i close an iframe which contains my page.

    0 讨论(0)
提交回复
热议问题