Fix missing OAuth2 authentication for create_user2 and update_user2 methods#112
Merged
Subterrane merged 2 commits intomainfrom Oct 6, 2025
Merged
Conversation
Co-authored-by: Subterrane <5290140+Subterrane@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] _auth_settings empty for create and update users
Fix missing OAuth2 authentication for create_user2 and update_user2 methods
Oct 6, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
create_user2_with_http_infoandupdate_user2_with_http_infomethods inusers_v2_api.pyhad their_auth_settingsvariable incorrectly set to an empty list[], causing 401 Unauthorized errors when attempting to create or update users through the V2 API.This inconsistency meant that users had to manually provide authentication headers as a workaround:
Solution
Updated both methods to correctly use
_auth_settings = ['OAuth2'], consistent with:users_v2_api.py(get_user2, delete_user2, list_users2, get_user_apps2)users_v1_api.py(create_user, update_user)Changes
File:
onelogin/api/users_v2_api.pycreate_user2_with_http_info- Fixed_auth_settings = []→_auth_settings = ['OAuth2']update_user2_with_http_info- Fixed_auth_settings = []→_auth_settings = ['OAuth2']Impact
Testing
All existing tests pass:
test_users_v2_api.py: 6/6 tests passingtest_users_v1_api.py: 15/15 tests passingFixes #[issue_number]
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.