-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Wildfire support ootb license #17675
New issue
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
Conversation
Tested on 6.2 machine, 6.5 machine and a new testing machine. |
@@ -11,6 +11,12 @@ | |||
PARAMS = demisto.params() | |||
URL = PARAMS.get('server') | |||
TOKEN = PARAMS.get('token') or (PARAMS.get('credentials') or {}).get('password') | |||
if not TOKEN and is_demisto_version_ge('6.5.0'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if not TOKEN and is_demisto_version_ge('6.5.0'): | |
if not TOKEN and is_demisto_version_ge('6.6.0'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
Link to the unit tests coverage report: |
Contributing to Cortex XSOAR Content
Make sure to register your contribution by filling the contribution registration form
The Pull Request will be reviewed only after the contribution registration form is filled.
Status
Related Issues
fixes: https://github.com/demisto/etc/issues/45358
Description
Added support for license based / config based retrieval of the API token.
Screenshots
Paste here any images that will help the reviewer
Minimum version of Cortex XSOAR
Does it break backward compatibility?
Must have