Property reference

angular.jsonp.inclusion_list.urls

The angular.jsonp.inclusion_list.urls property specifies a list of allowed URLs for JSONP requests when the inclusion list feature is enabled. Admins should review this property to ensure that only trusted sources are permitted for data retrieval, enhancing security.

Default: self Type: string Application: Global

Key questions about this property

The answers below summarize the purpose, scope, default effect, and review scenarios for this property.

What does it do? This property defines a comma-separated list of URLs that are permitted for JSONP requests, impacting data access and security.
What area does it affect? JSONP configuration
What does the default mean? The default value is "self", which is the baseline setting used unless it is changed.
When should you review it? Review this property when configuring JSONP access or updating trusted data sources.

Out of the box property record

Raw metadata from the property record.

Property name angular.jsonp.inclusion_list.urls
Sys ID d31e03b0c3331010f34a7096e940dd96
Type string
Application Global
Default value self
Description If angular jsonp inclusion list is enabled, this is the list of comma-separated allowed urls of the format "http://example.com/**"
Updated 2024-05-25 03:39:10

Sources

Official references and nearby text excerpts where this property appears.

Documentation excerpt View supporting context
Context preview Snippet 1
... with cross-domain endpoints will fail. You can address this issue in your scripts by doing one of the following: 1. Add the domains of any newly failing requests to the angular.jsonp.inclusion_list.urls system property. 2. Opt out of this behavior by changing angular.jsonp.inclusion_list.enabled to false. • Type: true | false • Default value: true • Location: System Property [sys_properties] table glide.apps.hub.current URL ...
Documentation excerpt View supporting context
Context preview Snippet 2
... URLs for the AngularJS $http service can allow/reject JSONP requests. JSONP requests are allowed to any URL if these properties are not configured and enabled. Use the value of the angular.jsonp.inclusion_list.urls system property to define a list of URLs that are trusted and allow for this purpose. Set the value of the angular.jsonp.inclusion_list.enabled system property to true to limit allowed JSONP ...