You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was doing some accounting and realized my numbers did not match those of Robinhood.
The statement : robin_stocks.robinhood.account.get_bank_transfers(direction=None, info=None) returns up to the last 50 transactions, but if you have made more, you get the Found Additional pages exist but could not be loaded.
I am not really familiar making custom request, so unsure if one can be made. How can you retrieve those pages/records ? Thanks.
The text was updated successfully, but these errors were encountered:
I was able to get it to work using zot24 fix mentioned in #209.
#---------------------------------------------------------------------------------------------------------#
in the mean time and for whoever else encounter this problem, what I did to fix it was to change the line
robin_stocks/robin_stocks/robinhood/helper.py
Line 304 in 8ffc27f
res = SESSION.get(nextData['next'])
to looks like
res = SESSION.get(nextData['next'].replace('/public', ''))
#---------------------------------------------------------------------------------------------------------#
@jmfernandes could this be included in future releases?
Was doing some accounting and realized my numbers did not match those of Robinhood.
The statement : robin_stocks.robinhood.account.get_bank_transfers(direction=None, info=None) returns up to the last 50 transactions, but if you have made more, you get the Found Additional pages exist but could not be loaded.
I am not really familiar making custom request, so unsure if one can be made. How can you retrieve those pages/records ? Thanks.
The text was updated successfully, but these errors were encountered: