-
Notifications
You must be signed in to change notification settings - Fork 5
Description
List<Quote> prices = stockPriceService.getPriceHistory("AAPL", fromDate, toDate, StandardPeriodType.DAY);
Gives me
Caused by: java.io.IOException: Server returned HTTP response code: 401 for URL: https://query1.finance.yahoo.com/v7/finance/download/AAPL?period1=1325394000&period2=1738904400&interval=1d at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
I see other APIs have had a similar issue but have work arounds.
If I go to the url it gives me;
{"finance":{"result":null,"error":{"code":"unauthorized","description":"User is not logged in"}}}
Is there anyway to provide credentials?