Status Update
Comments
se...@google.com <se...@google.com> #2
Hello there!
If I understand this request correctly, you'd like an API to retrieve all the existing products and SKUs, like the list provided
Can you provide more details on the workflow you have in mind and the potential usefulness of this feature?
- What impact (in terms of costs, productivity, etc.) could this feature have?
- What workaround (if any) are you currently using?
Kind regards.
jb...@google.com <jb...@google.com> #3
The other problem comes from updating the license list on our side. Since we can’t query an API, we risk human error when manually updating the list and deploying it to customers. If someone makes a mistake, it can corrupt the whole license and SKU list for customers, which will remove all of their Google licenses.
ry...@brightspotkids.com <ry...@brightspotkids.com> #4
In that case, can't you update the license list programmatically when a user with a new license is imported?
ry...@brightspotkids.com <ry...@brightspotkids.com> #5
jb...@google.com <jb...@google.com>
co...@gmail.com <co...@gmail.com> #6
Hi!
We have to make numerous calls to get this information, which counts against our quota.
Can you provide more details about this? How are you getting this information?
No because the list is stored as a custom template on our side, so we don't have the ability to change it during import.
I understand it's not feasible to update the custom template on your side during the import process?
co...@gmail.com <co...@gmail.com> #7
1) Sorry, this part wasn't linked to building the list but rather getting the user setup with their license information. Right now, we get the license list from the link or from when customers complain.
Description
First, please search through existing issues to ensure that the bug has not already been reported. You can start the search here:
If the issue has already been reported, you can click the star next to the issue number to subscribe and receive updates. We prioritize responding to the issues with the most stars. You can also comment on the issue to provide any details of your experience with it.
If your issue has not been reported, please provide all of the following:
-----------------------------------------------------------------------------------------------------------------------------
A short description of the issue:
I recently upgraded a project from the Rhino engine to the new V8 engine. When calling:
google.script.run.withSuccessHandler( function() { google.script.host.close(); } ).customFunction(object);
from an HTMLService modal dialogue, the script crashes and the browser's javascript console shows "Uncaught".
No logs appear in the Apps Script editor or Stackdriver.
I added a log message and debug email at the very beginning of the customFunction() but those lines are never executed.
I changed it to call a new, completely blank function instead of customFunction() and the same thing happened - the function is never invoked and the console displays "Uncaught"
The script had previously worked perfectly on Rhino, and this issue only started after upgrading the project to V8. I've reverted back to Rhino and the script works again.
Before upgrading to V8, I ensured that my code should not experience any of the incompatibilities listed here:
A small code sample that reliably reproduces the issue. The sample should run as-is or with minimal setup, without external dependencies.
// template_html:
function onClickFunctions(formData) {
console.group('onClickFunctions');
var formValues = '';
for (var property in formData) { formValues += property + ': ' + formData[property]+'\n'; }
var obj = {};
obj['testString'] = formData.elements.testString.value;
obj['testNum'] = Number(formData.elements.testNum.value);
google.script.run.withSuccessHandler( function() { google.script.host.close(); } ).customFunction(obj);
console.groupEnd();
}
//
function customFunction() {
Logger.log('starting customFunction');
MailApp.sendEmail('test@test.com', 'test', 'test');
}
What steps will reproduce the problem?
1. Call google.script.run.withSuccessHandler( function() { google.script.host.close(); } ).customFunction(obj); from an HTMLService modal.
2. "Uncaught" appears in the browser's javascript console.
3.
What is the expected output? What do you see instead? If you see error messages, please provide them.
Before upgrading the project to V8, upon calling the server-side customFunction(), the customFunction() would execute without any errors.
Please provide any additional information below.