'how to read googlesheet data in ReactJS

New to reactjs and I have to build a react component that display information from a google sheet in a scrollable ticker widget

I found an NPM package to enable the scrolling widget https://www.npmjs.com/package/react-ticker

In addition , I see the google-sheet package but this run on the server. https://github.com/theoephraim/node-google-spreadsheet

can you please give some hints on how to read and display the content of a googlesheet data using reactjs



Solution 1:[1]

Consider using Sheets API.

Take a look at this JavaScript quickstart if you want to authorize the request client-side.

If you want to do that server-side, there are quickstarts for many languages.

Here's a guide for reading data from a spreadsheet.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Iamblichus