-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I cache a third party json? #87
Comments
JSON objects are storable in this lib, check the code below for example
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I've created an API that is served through a static json on a separate domain. I would like to cache this json on my server and pass it through my app so that I don't have to hit my API with every visitor. I'm not very experienced, so I'm not sure how I would achieve this.
Currently, my routes are being cached, but they are still sending the http request to my third party json. Let's assume that my api url is https://exampleapi.com/item.json
This is what I currently have (none of my attempts at json caching has worked):
The text was updated successfully, but these errors were encountered: