Obsolete
Status Update
Comments
bl...@google.com <bl...@google.com> #2
Metadata
- Summary: The Directory API's users.list method is inconsistently returning a nextPageToken when using the query parameter, and the starts with operator is not working for the orgDepartment field.
- Tags:
,directory-api ,users-list ,next-page-token ,query-parameter ,org-department starts-with-operator
Additional resources:
https://issuetracker.google.com/savedsearches/566232?hl=it https://developers.google.com/drive/api/reference/rest/v3/files/list https://developers.google.com/admin-sdk/directory/v1/.../manage-users https://developers.google.com/admin-sdk/directory/reference/rest/v1/.../list https://stackoverflow.com/.../want-admindirectory-users-list-more-then-500... https://stackoverflow.com/.../drive-list-files-doesnt-have-nextpagetoken-wh... https://stackoverflow.com/.../how-to-resolve-the-missing-information-probl...
jp...@google.com <jp...@google.com> #3
Automated by Blunderbuss job workspace-devrel-public-issue-tracker-blunderbuss-autoassigner for config assign for component 191635.
Description
Description: When registering for Google Workspace, the signup form allows users to enter invalid inputs in the "First name" and "Last name" fields. Specifically, the form accepts input consisting solely of commas (, ,) and spaces without throwing any validation errors. This behavior could result in invalid or nonsensical user data being submitted, which may lead to further issues in user management or communications.
Code:
example code: <input type="text" name="first_name" placeholder="First name" /> <input type="text" name="last_name" placeholder="Last name" />
Main code in your website: <input jsname="YPqjbf" type="text" value=" ," id="ucc-38" class="qdOxv-fmcmS-wGMbrd" jsaction="input:YPqjbf;focus:AHmuwe;blur:O22p3e" aria-controls="ucc-38-help-text-id" aria-describedby="ucc-38-help-text-id" aria-labelledby="ucc-38-label-id" autocomplete="off" aria-invalid="false">
Output: When the form is submitted with only commas and spaces in the "First name" and "Last name" fields, the form proceeds to the next step without any errors. The invalid input is accepted as if it were valid.
Expected output: The form should display a validation error when non-alphanumeric characters are entered in the "First name" or "Last name" fields.
Steps: 1)Navigate to the Google Workspace signup page. 2)In the "First name" field, enter , , (without the quotes). 3)In the "Last name" field, enter , , (without the quotes). 4)Fill out the email field with a valid email address (e.g.,user@example.com ).
5)Click the "Next" button to submit the form.
6)Observe that the form accepts the input and proceeds to the next step without any validation errors.