We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GAM is using the Google API Python client and making calls like this: cd is the Directory service object.
result = callGAPI(cd.orgunits(), 'get', customerId=GC.Values[GC.CUSTOMER_ID], orgUnitPath=orgUnitPath)
If the orgUnitPath contains + or #, the URL is not correct.
1: Get OU "Test/Test % Percent" send: b'GET /admin/directory/v1/customer/my_customer/orgunits/Test/Test%20%25%20Percent?prettyPrint=true&alt=json HTTP/1.1\r\nHost: admin.googleapis.com\r\naccept: application/json\r\naccept-encoding: gzip, deflate\r\nuser-agent: GAM 7.05.08 - https://github.com/GAM-team/GAM / GAM Team <[email protected]> / Python 3.13.2 final / macOS-15.3.2-arm64-arm-64bit-Mach-O arm64 / (gzip)\r\nx-goog-api-client: gdcl/2.164.0 gl-python/3.13.2 cred-type/u\r\ncontent-length: 0\r\nauthorization: Bearer ya29.xxx\r\n\r\n' reply: 'HTTP/1.1 200 OK\r\n' Works 2: Get OU "Test/Test + Plus" send: b'GET /admin/directory/v1/customer/C03pmm8ne/orgunits/Test/Test%20+%20Plus?prettyPrint=true&alt=json HTTP/1.1\r\nHost: admin.googleapis.com\r\naccept: application/json\r\naccept-encoding: gzip, deflate\r\nuser-agent: GAM 7.05.08 - https://github.com/GAM-team/GAM / GAM Team <[email protected]> / Python 3.13.2 final / macOS-15.3.2-arm64-arm-64bit-Mach-O arm64 / (gzip)\r\nx-goog-api-client: gdcl/2.164.0 gl-python/3.13.2 cred-type/u\r\ncontent-length: 0\r\nauthorization: Bearer ya29.xxx\r\n\r\n' reply: 'HTTP/1.1 404 Not Found\r\n' Fails, + was not URL encoded, it should be 'Test%20%2B%20Plus' 3: Get OU "Test/Test # Sharp" send: b'GET /admin/directory/v1/customer/my_customer/orgunits/Test/Test%20 HTTP/1.1\r\nHost: admin.googleapis.com\r\naccept: application/json\r\naccept-encoding: gzip, deflate\r\nuser-agent: GAM 7.05.08 - https://github.com/GAM-team/GAM / GAM Team <[email protected]> / Python 3.13.2 final / macOS-15.3.2-arm64-arm-64bit-Mach-O arm64 / (gzip)\r\nx-goog-api-client: gdcl/2.164.0 gl-python/3.13.2 cred-type/u\r\ncontent-length: 0\r\nauthorization: Bearer ya29.xxx\r\n\r\n' reply: 'HTTP/1.1 404 Not Found\r\n' Fails, '%23%20Sharp?prettyPrint=true&alt=json' is all missing before HTTP
The text was updated successfully, but these errors were encountered:
ohmayr
No branches or pull requests
GAM is using the Google API Python client and making calls like this: cd is the Directory service object.
If the orgUnitPath contains + or #, the URL is not correct.
The text was updated successfully, but these errors were encountered: