Skip to main content
December 7, 2025

Premiere Pro 25.6.3 UXP Issue: Unable to Make Requests with HTTP URLs (vs. HTTPS)

  • December 7, 2025
  • 2 replies
  • 365 views

Unable to Make Requests with HTTP URLs (vs. HTTPS) while the same request works with InDesign (v21.02) UXP

App: Premiere Pro 25.6.3
OS: Mac (no data for Windows)
Priority:) Very urgent

Steps to reproduce:

1. Enable the network access in the manifest (v5)

"requiredPermissions": {

"network": {

"domains": "all"

}

2. Open the panel's debug console and run the following code

async function getDocs() {
try {
const response = await fetch(
"http://example.com/"
);

if (!response.ok) {
throw new Error(
`HTTP error ${response.status}: ${response.statusText}`
);
}
const data = await response.text();
console.log(data);

} catch (err) {
console.error(err);
}
}

await getDocs();


Expected Result (taken from the same code output in InDesign UXP):
     <!doctype html><html lang="en"><head><title>Example Domain</title><meta name=.....

Actual Result:

(index):16 TypeError: Network request failed
at o.onerror (uxp://uxp-internal/netjs_scripts.js:2)
at z.m (uxp://uxp-internal/domjs_scripts.js:2)
at uxp://uxp-internal/domjs_scripts.js:2
at P (uxp://uxp-internal/domjs_scripts.js:2)
at uxp://uxp-internal/domjs_scripts.js:2
at D (uxp://uxp-internal/domjs_scripts.js:2)
at L (uxp://uxp-internal/domjs_scripts.js:2)
at i (uxp://uxp-internal/netjs_scripts.js:2)
getDocs @ (index):16
await (async)
(anonymous) @ (index):1

 

2 replies

sam_5920Author
December 9, 2025

Hi @IanB_360, thank you. It looks like it's not possible to edit the original post, so I'm adding some additional details below.

Premiere Pro: 25.6.3 (Build 2)
Mac OS: Tahoe 26.1

The issue seems to be easily reproducible and the error happens with brand new plugin as well. For example, by creating a new plugin with "quick-starter-template" (Adobe UDT Version 2.2.1 (2.2.1.2)), adding the "domains": "all" permission as describe in the original post and trying to make a request.

Please let me know if some specific additional information is required.

Thanks

IanB_360
Community Manager
Community Manager
December 8, 2025

Hi @sam_5920 

Welcome to the Premiere Pro Forum community. Thank you for taking the time to report a problem. It would help us if you could use the link here, How to Report a Problem, which has steps to provide more information that can help us identify the issue. 

Here to help.

Ian