Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The run() method of the SharedStorageSelectURLOperation interface defines the structure to which the run() method defined inside a URL Selection output gate operation should conform.
run(urls, data)urlsAn array of objects representing the URLs to be chosen by the URL Selection operation. Each object contains two properties:
urlA string representing the URL.
reportingMetadata OptionalAn object containing properties where names are event types and values are URLs pointing to reporting destinations, for example "click" : "my-reports/report1.html". The URLs act as destinations for reports submitted with a destination of type "shared-storage-select-url", typically submitted via a Fence.reportEvent() or Fence.setReportEventDataForAutomaticBeacons() method call.
dataAn object representing any data required for executing the operation.
A Promise that fulfills with a number defining the array index of the URL selected by the operation.
See the main SharedStorageSelectURLOperation page for an example.