skip to Main Content

Enable CORS in httpd.conf – Apache

I'm developing a web application which makes REST calls to another web application outside its domain. But whenever it tries to make the REST call, I'm facing CORS issue in chrome. Error: No 'Access-Control-Allow-Origin' header is present on the requested…

VIEW QUESTION

Shopify API Cross Domain Ajax Request

I am using the below code to get the customer details from shopify. I have redirected my domain to the other domain from the shopify admin. function setEmailWithLoggedInUser(callback) { $.ajax({ url: 'https://new-website-shopify.myshopify.com/admin/customers/'+__st.cid+'.json', crossDomain: true, beforeSend: function(xhr) { xhr.setRequestHeader("Authorization", "Basic XXXXXXXXXXXX")…

VIEW QUESTION
Back To Top
Search