Monday, June 25, 2018

Google Excel as Database

How to implement this: 

  • Go to Google Excel and enter your data as shown in below image.
  • Click : File > Publish to web :  and you will see this dialog box , click Publish Button.

Now , you are ready to use your excel as database. Copy your excel document id (DOCUMENT_ID) which you get from url like this:

https://docs.google.com/spreadsheets/d/2nQ6aZvFzOpdPx6uSqWgFVGtnO_G9oiPhWzRHUCQlBU

    Api Endpoint: 

    https://exceldb.herokuapp.com/r/`DOCUMENT_ID`


Example:

curl -X GET \ https://excel-db.herokuapp.com/r/1QnQ6HZvFzOpFPx5uSqWgDVGtnO_G9oiPhWzRHUCQlBU \ -H 'cache-control: no-cache' \ -H 'postman-token: 4faaf4be-4759-2fda-04e4-c85f6e1aed43'

Response:

[
  • {
    • id"1",
    • title"sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
    • body"quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
    },
  • {
    • id"2",
    • title"qui est esse",
    • body"est rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla"
    },
  • {
    • id"3",
    • title"ea molestias quasi exercitationem repellat qui ipsa sit aut",
    • body"et iusto sed quo iure\nvoluptatem occaecati omnis eligendi aut ad\nvoluptatem doloribus vel accusantium quis pariatur\nmolestiae porro eius odio et labore et velit aut"
    },
  • {
    • id"4",
    • title"eum et est occaecati",
    • body"ullam et saepe reiciendis voluptatem adipisci\nsit amet autem assumenda provident rerum culpa\nquis hic commodi nesciunt rem tenetur doloremque ipsam iure\nquis sunt voluptatem rerum illo velit"
    },
  • {
    • id"5",
    • title"nesciunt quas odio",
    • body"repudiandae veniam quaerat sunt sed\nalias aut fugiat sit autem sed est\nvoluptatem omnis possimus esse voluptatibus quis\nest aut tenetur dolor neque"
    }
]




No comments:

Post a Comment