Hi,
in which programming language do you want to do this?
Eg. in Python, you can fetch all worksheets name and id like this:
ws_feed = spr_client.GetWorksheetsFeed({key})
spr_ws_by_id = {}
spr_ws_by_name = {}
for ws in ws_feed.entry:
wid = ws.id.text.split("/")[-1]
print ws.title.text, wid
spr_ws_by_id[wid] = ws.title.text
spr_ws_by_name[ws.title.text] = wid
Cheers,
a.
On Sun, Oct 25, 2015 at 8:16 AM, <[email protected]> wrote:
> How I find the worksheetId From Google Spreadsheet.Below API Request needs
> a worksheetId and I used rowId in the formate R1 but I does not work.
>
> https://spreadsheets.google.com/feeds/worksheets/{key}/private/full/{worksheetId}
>
> How I get these IDs?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Spreadsheets API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>
--
You received this message because you are subscribed to the Google Groups
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.