Open estelae opened 1 year ago
Hi @estelae, I wanted to let you know that we're looking into both this and akamai/AkamaiOPEN-edgegrid-python#68, but it requires somewhat more investigation. I'll get back to you as soon as I have something to share.
Best regards, Darek
Hi @estelae
SIEM api can only fetch data starting from 12 hours in the past. So, you may get 400 due to:
from & to needs to be within the past 12 hours from needs to be less than to
Looks like you are using some dummy values for the query params and mostporobalby this is the issue here.
Please let us know if this clarification helps.
Describe the issue Using this library for the SIEM API (https://techdocs.akamai.com/siem-integration/reference/get-configid) returns a 400 error for missing parameters.
To Reproduce Steps to reproduce the behavior:
Expected behavior An endpoint with a similar format
https://host/prolexic-analytics/v2/time-series?destinations=ip&locations=agr&source=both
works with this library using the above example, so it is unexpected for the SIEM endpoint not to work.Actual behavior It outputs this error.
Judging from the
instance
above, it appears that only the first query parameter is being recognized. If the&
character is encoded to%26
in the signature generation then theinstance
variable changes to'instance': 'https://{host}/siem/v1/configs/{configid}?from={from}&to={to}&limit={limit}'
, but gives a 401 error for the signature not matching. If the&
character is encoded to%26
in the request and signature, then it returns a 400 error for missing parameters.Please add a working example using this library for this endpoint (https://techdocs.akamai.com/siem-integration/reference/get-configid).