Problem accessing remote CSV using dojo - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:34:28Zhttp://stackoverflow.com/feeds/question/477053http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/477053/problem-accessing-remote-csv-using-dojo1Problem accessing remote CSV using dojoAnimesh2009-01-25T02:05:54Z2009-01-25T02:26:06Z
<p>Hi,
I am trying to create a website where I host my data on google spreadsheets, and show data to the user in his browser using dojo.</p>
<p>However, I am getting the error</p>
<pre><code>Access to restricted URI denied" code: "1012
</code></pre>
<p>when the browser encounters:</p>
<pre><code>var stateStore = new dojox.data.CsvStore(
{url: "http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&output=csv&gid=0",
label: "name"});
</code></pre>
<p>while replacing it with a locally stored copy of the same CSV works fine.</p>
<p>From what my google searches told me, this is due to security restrictions in modern browsers which try to protect you from cross-site scripting attack. Of course, I would like some way to be able to "whitelist" this domain for the purpose of my page. </p>
<p>Any suggestions?</p>
<p>The Full HTML Code is</p>
<pre><code><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
@import "dojo-release-1.2.3/dijit/themes/tundra/tundra.css";
@import "dojo-release-1.2.3/dojo/resources/dojo.css"
</style>
<script type="text/javascript" src="dojo-release-1.2.3/dojo/dojo.js"
djConfig="parseOnLoad:true, isDebug: true"></script>
<script>
dojo.require("dojox.data.CsvStore");
dojo.require("dijit.Tree");
dojo.require("dojo.parser");
</script>
<script type="text/javascript">
var stateStore = new dojox.data.CsvStore({url: "http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&output=csv&gid=0", label: "name"});
// var stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"});
</script>
</head>
<body class="tundra">
<!-- <div dojoType="dojox.data.CsvStore" url="http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&output=csv&gid=0" jsid="stateStore" /> -->
<div dojoType="dijit.Tree" store="stateStore" labelAttr="name" label="States"></div>
</body>
</html>
</code></pre>
<p>Thanks in advance,
Animesh</p>
http://stackoverflow.com/questions/477053/problem-accessing-remote-csv-using-dojo/477065#4770652Answer by Jonathan Lonowski for Problem accessing remote CSV using dojoJonathan Lonowski2009-01-25T02:26:06Z2009-01-25T02:26:06Z<p><a href="http://en.wikipedia.org/wiki/Same_origin_policy" rel="nofollow"><strong>Same origin policy</strong></a>.</p>
<p>The domain used to access the page must match the domain requested. So, you can't access spreadsheets.google.com from somewhere else using JavaScript solely.</p>
<p>The workaround that I hear about most is a <a href="http://ajaxpatterns.org/Cross-Domain_Proxy" rel="nofollow"><strong>cross-domain proxy</strong></a> -- a server-side script that GETs (or POSTs) to another domain and echoes the results back to JavaScript.</p>