Cato Aune
Cato Aune

Reputation: 36

User properties for non Apps Script add-ons

When developing an Workspace add-ons using Apps Script, I can use the PropertiesService and set/get properties (key/value) for each user. Is it possible to access the PropertiesService when using another language than Apps Script?

I have been searching for a REST/gRPC API interface for PropertiesService, but have not found anything yet.

Upvotes: 0

Views: 80

Answers (1)

Century Tuna
Century Tuna

Reputation: 1762

Suggestion:

You could read more about Web Storage API that also works in key-value stores (or key value pairs, similar to the Script Properties in Google Apps Script)

Storage objects are simple key-value stores, similar to objects, but they stay intact through page loads. The keys and the values are always strings (note that, as with objects, integer keys will be automatically converted to strings). You can access these values like an object, or with the Storage.getItem() and Storage.setItem() methods.

For other client-side storage methods, you can check out this reference link.

Upvotes: 0

Related Questions