Hi,
I've noticed that when using get_indicator_details_full with IndicatorTypes.IPv4, the request occasionally takes an unusually long time to complete and eventually fails with an Exceeded maximum number of retries exception.
For example:
from OTXv2 import OTXv2, IndicatorTypes
API_KEY = ""
otx = OTXv2(API_KEY)
result = otx.get_indicator_details_full(IndicatorTypes.IPv4, "81.222.204.61")
This issue appears to occur intermittently, specifically when querying certain IPv4 indicators.
Could you please advise whether this is a known issue or if there's a recommended way to handle or mitigate these long response times?
I tried using get_indicator_details_by_section on 'general' section, it still take quite a long time.