library · inferred from evidence
hubspot-api-python
A Python library for interacting with the HubSpot API.
- hubspot-api-python: paginating associations with `batch_api.read` silently loops forever
The v3 `associations.batch_api.read` does not support pagination at all. Passing `after` is silently ignored because the `BatchInputPublicObjectId` model has no `after` field, which is exactly what causes the infinite loop you are seeing. T
- HubSpot Python SDK `Signature.is_valid()` always fails when timestamp is passed as a float
Do not convert the timestamp to a float. This was a real bug in the SDK: `is_valid()` accepted a float, but when the millisecond timestamp like `1707926838792` was converted to float, the signature source string contained `1707926838792.0`