Web/API/Request/integrity

From Get docs


The integrity read-only property of the Request interface contains the subresource integrity value of the request.

Syntax

var myIntegrity = request.integrity;

Value

The subresource integrity value of the request (e.g., sha256-BpfBw7ivV8q2jLiT13fxDYAe2tJllusRSZ273h2nFSE=).

If an integrity has not been specified, the property returns .

Example

In the following snippet, we create a new request using the Request.Request() constructor (for an image file in the same directory as the script), then save the request integrity value in a variable:

var myRequest = new Request('flowers.jpg');
var myIntegrity = myRequest.integrity;

Specifications

Specification Status Comment
FetchThe definition of 'integrity' in that specification. Living Standard Initial definition

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

integrity

Experimental'

Chrome

Full support 46

Edge

Full support 14

Firefox

Full support Yes

IE

No support No

Opera

Full support Yes

Safari

Full support 10.1

WebView Android

No support No

Chrome Android

Full support 46

Firefox Android

No support No

Opera Android

Full support Yes

Safari iOS

Full support 10.3

Samsung Internet Android

Full support 5.0

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.


See also