Skip to content Skip to sidebar Skip to footer

How To Hide/encrypt The Ajax Requests From Network Tab In Google And Other Browsers?

I am working on jwplayer and I just want to hide/encrypt the ajax requests that are sent by jwplayer to play the video. The reason is this when jwplayer send request it contains vi

Solution 1:

As Max says you can't hide requests and/or stop someone from capturing any video which you download to your site.

The usual solution is to encrypt the video so it can't be viewed or played without a key.

Solution 2:

  1. Your code doesn't have access to network tab. Network tab shows requests/responses client browser sends. Even if you somehow manage to hide your requests from browsers network tab, client still can see req/res via tools like wireshark.

  2. So you need to introduce some middle-ware between jwplayer and google drive, that will be responsible for securely fetching videos from google drive and serving them to jwplayer without exposing internal id's.

Post a Comment for "How To Hide/encrypt The Ajax Requests From Network Tab In Google And Other Browsers?"