Create a JSON file online and get the url

From a JSON string, I want to create a URL to display that JSON string.

Do you know a website that supports this?

+7
source share
2 answers

You can use gist.github.com . Select a JavaScript language. I created a sample here . You can also get JSON in raw format .


The following SO post is also an alternative to gist:

Json-Viewer: data in URL

+6
source

You need to create a web service that will create the data in JSON format. Most likely the .net infrastructure does this. Therefore, use the .net web service, which creates the web service and gives the URL. then you can use this url to parse it.

Hope this helps you.

Enjoy.

:)

0
source

All Articles