mjrgit / chrome-rest-client

Automatically exported from code.google.com/p/chrome-rest-client
0 stars 0 forks source link

Unable to save requests locally #215

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open ARC, configure a POST request
2. Try to save the request locally (without specifying a project for it)
3. Get error message "unable to save request data".

What is the expected output? What do you see instead?
Expecting to see the request saved for later retrieval. 
Instead I just get an error message "Unable to save request data!"

On what operating system, browser and browser version?
Windows Server 2008 R2 SP1, Chrome 30.0.1599.101.m.

Please provide any additional information below.
Also unable to save with a project specified.

Original issue reported on code.google.com by simonpay...@gmail.com on 5 Nov 2013 at 8:42

GoogleCodeExporter commented 8 years ago
Lately I've notices some change in Chrome's storage API and it now require user 
to accept storage request for specified amount of space. Probably it is the 
reason because there is no more storage space left.

Can you confirm storage available for the app using this snipped?
navigator.webkitPersistentStorage.queryUsageAndQuota(function(used, remaining) {
  console.log("Used quota: " + used + ", remaining quota: " + remaining);
})

Run it in Chrome Dev Tools console (ctrl+shift+i -> console tab).

Original comment by jarro...@gmail.com on 7 Nov 2013 at 2:16

GoogleCodeExporter commented 8 years ago
I get this from that snippet:

Used quota: 0, remaining quota: 0

Then when I tried the app again, the local save worked!  Very odd, I haven't 
changed anything.

Simon

Original comment by simonpay...@gmail.com on 7 Nov 2013 at 3:36

GoogleCodeExporter commented 8 years ago
I was getting this error until I relaunched Chrome to accept the latest 
updates. That seems to have fixed it.

Original comment by smithcol...@gmail.com on 2 Jun 2015 at 10:31