I'd like to get url from a Smartsheet published sheet by Python.
Below is my code but it gives me error message.
# Publish the sheet
sheetToPublish = smartsheet_client.Sheets.set_publish_status(
sheet.id, # sheet_id
smartsheet.models.SheetPublish({
'readOnlyFullEnabled': True
})
)
publish_sheet = smartsheet_client.Sheets.get_publish_status(
sheet.id) # sheet_id
?
?print(publish_sheet.readOnlyFullUrl)
Here is the error message,
AttributeError: 'SheetPublish' object has no attribute 'readOnlyFullUrl'
question from:
https://stackoverflow.com/questions/65947774/how-to-get-smartsheet-published-sheets-url 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…