Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
40 views

I am making a jsonp ajax call to a local service which responds with a valid javascript response. The ajax request looks like below: $.ajax({ url: "http://localhost:12345", ...
Shadow's user avatar
  • 4,026
1 vote
0 answers
30 views

I am trying to send data to server in the jsonp method from the chrome extension I am developing. However, it worked fine in manifest V2, but the following error occurs in manifestV3. Please help me. ...
sys090407's user avatar
0 votes
2 answers
214 views

We are running a Shopify store, and have come to a point where we need more flexibility content wise. My solution to this is to have content delivered via a custom CMS to a subdomain. One issue I have ...
pusle's user avatar
  • 1,543
1 vote
0 answers
121 views

I am trying to use Scriptlab to call the public Census API and write the resulting json response to excel. Specifically, it takes the [0][0] in the range, creates an API url from that, and it is ...
Ethan's user avatar
  • 11
0 votes
1 answer
1k views

Refused to load the script 'https://dorar.net/dorar_api.json?skey=انما الاعمال بالنياتpage=1&callback=jsonp_callback_255' because it violates the following Content Security Policy directive: "...
Ahmed El-Tabarani's user avatar
0 votes
0 answers
15 views

I have a simple set up in which I populate data on my HTML page by accessing data in a Google Sheet. This works perfectly well in Chrome, but in Edge I get a CORB error in the console. I'm using ...
GeorgePorge's user avatar
0 votes
0 answers
10 views

I have simple XMLHttpRequest. var xhr = new XMLHttpRequest(); xhr.open("GET", url, true); xhr.onreadystatechange = function () { if (this.readyState == 4 && this.status == ...
Mani's user avatar
  • 2,583
0 votes
2 answers
532 views

I am trying to fetch data from text file which resides on server. I have access of that location and able to see content when I put URL in browser tab. I am trying to make AJAX call and get file ...
Keval Patel's user avatar
0 votes
1 answer
1k views

This would seem to be very straightforward, but I cannot get additional HTTP headers added into a request that I'm attempting to make. I've watched via the browser developer tools as well as with ...
Jeff Bryant's user avatar
-2 votes
1 answer
86 views

this is what the URL looks like in the object. logoURL: "/rimg/provider-logos/airlines/v/FJ.png?crop=false&width=108&height=92&fallback=default1.png&_v=...
Dan's user avatar
  • 3
0 votes
0 answers
90 views

I'm struggling with the kendo ui transport property for schedules. The following snippet worked as expected: $.ajax({ url: 'https://myurl', dataType: 'jsonp', jsonpCallback:...
Murmulodi's user avatar
  • 739
0 votes
0 answers
667 views

Issue: I'm trying to make a JSONP request using ajax, but I'm encountering the below error. Cross-Origin Read Blocking (CORB) blocked cross-origin response https://nftrade.com/_next/data/...
Jenny From the Block's user avatar
-1 votes
1 answer
320 views

Earlier my WebApplication was working on .Net Framework 4.5.2. After upgrading to 4.8, the Application is intermittently giving a weird HTML error appended to the jsonp response. There is no error ...
Pulkit Gulati's user avatar
1 vote
1 answer
897 views

Angular 12 - Httpclient jsonp - how to pass custom callback parameter? Here is the full app -> https://stackblitz.com/edit/angular-ivy-2zg5yt?file=src/app/geolocation.service.ts geolocation-service....
Dinesh's user avatar
  • 1,820
-1 votes
2 answers
189 views

Hi i want to fetch data from avascan api and display it in html, but i am not able to do this. I have tried fetch api, json and ajax ways but none worked for me. Any suggestions? This is my html https:...
hitesh Pahwa's user avatar
0 votes
1 answer
317 views

When I call the HERE Geocoder Autocomplete API endpoint : https://autocomplete.geocoder.ls.hereapi.com/6.2/suggest.json ?apiKey={YOUR_API_KEY} &query=Pariser+1+Berl &beginHighlight=<b> &...
beurre's user avatar
  • 1
8 votes
1 answer
2k views

For a pretty large Web application I want to run multiple instances of Webpack (Encore) on the same page. When I put all the source code into a single Webpack configuration it all works. However when ...
Blackbam's user avatar
  • 19.7k
2 votes
1 answer
2k views

When starting the new Jakarta (9) project, I need to handle old (legacy libraries and modules) using the "javax" JSON-P API. Usually we end with this error: java: incompatible types: ...
Jouffan's user avatar
  • 83
0 votes
1 answer
303 views

I'm looking to get service status of all response code and get how many services are up and running fine like, If 10 services are there 9 service are UP and one down.Result should be in form of { 9/...
Seam C's user avatar
  • 5
2 votes
2 answers
2k views

Hello fellow problem solvers! I'm hoping to learn something from you. I ran into a challenge that could probably teach me more about Angular, and I would appreciate any input anyone might have. ...
Ryan Porter's user avatar
  • 2,202
0 votes
1 answer
78 views

I'm trying to save my results into PDF file after google sheet calculation. Here's my google sheet file: Google sheet(img) After someone submit my form J Column sum all answers and gets 39. Then I ...
Freelancer's user avatar
0 votes
1 answer
304 views

I am trying to write a script that gets COVID-19 numbers from the Ontario Database, but I keep getting the following error: "invalid value \"_\"" Upon further investigation, the ...
3ddavies's user avatar
  • 554
0 votes
1 answer
314 views

I have found the following JSON resource for global COVID infection data: https://opendata.ecdc.europa.eu/covid19/casedistribution/json/ I have tried this simple callback function (And many variations)...
Edward's user avatar
  • 47
-1 votes
1 answer
211 views

I have the following Ajax call: var baseurl = Office.context.mailbox.restUrl; var getMessageUrl = baseurl + "/v2.0/me/messages/" + rest_id + "?$select=SingleValueExtendedProperties&$...
BigDataFiles's user avatar
0 votes
0 answers
172 views

I'm trying to read JSON response with JS but I can't find what what I'm doing wrong. I'm trying to enbed JS in a plugin I use in WP, but for the moment I'm just trying to get the right information in ...
Creek Barbara's user avatar

1
2 3 4 5
81