Reputation: 11
I have been using urlread2 to read financial statements from marketwatch, and it was previously working. I am trying to run the same Matlab script I previously ran and cannot get it work. The html variable returned is an empty matrix.
Any ideas ?
Here is a link to the function: https://se.mathworks.com/matlabcentral/fileexchange/35693-urlread2 I know the function works, as I tried it running it on a different website.
Here is the Matlab script I am using.
url = ['http://www.marketwatch.com/investing/stock/AAPL/financials/'];
url = strrep(url,' ','');
query = 'urlread2';
params = {'term' query};
queryString = http_paramsToString(params,1);
url = [url '?' queryString];
[html,extras] = urlread2(url);
Upvotes: 1
Views: 86