massive-com / massive-com/client-jvm
Incorrect mapping for FinancialsBlocking request
Nobody has claimed this yet.
- Dominant language
- Kotlin
- Stars
- 82
- Forks
- 38
- Avg merge
- 32m
- Merged PRs (30d)
- 2
Description
The code
PolygonRestClient polygonRestClient = new PolygonRestClient("KEY");
List<Financials> financials = polygonRestClient.getExperimentalClient().getFinancialsBlocking(
new FinancialsParametersBuilder().ticker("AAPL").timeframe("quarterly").limit(10).build()
).getResults();
always return empty balanceSheet and comprehensiveIncome while the direct call
https://api.polygon.io/vX/reference/financials?ticker=AAPL&timeframe=quarterly&limit=1&sort=filing_date&apiKey=KEY
return these fields.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing getFinancialsBlocking from PolygonRestClient and compare its response mapping with the direct /vX/reference/financials request shown in the report. Verify that balanceSheet and comprehensiveIncome are populated for the AAPL quarterly response, then confirm the corrected mapping with an appropriate client test.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, kotlin
- Domain
- api
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100