Yahoo Finance Webservice API is down? [duplicate] - matlab

This question already has answers here:
Has Yahoo finance web service disappeared? API changed? Down temporarily?
(10 answers)
Closed 5 years ago.
I've been using the Yahoo Finance Webservice for a few months now to fetch stock data in JSON format using the following URL: http://finance.yahoo.com/webservice/v1/symbols/AAPL/quote?format=json&view=detail
**It has been working perfectly.**However, as of today this is simply hitting a 404 error and I can't seem to find a possible work around. I understand Yahoo has made some changes to Yahoo finance and their other APIs. Does anyone have a potential solution?
Thanks.

It happen to me too since yesterday, fix it by using YQL API.

Related

Firebase hosting rewrite rules based on language of browser [duplicate]

This question already has answers here:
Implementing localized 404 page with Firebase hosting
(2 answers)
Closed 2 years ago.
I have a Firebase hosted website that contains an index_fr.html and index_nl.html.
How can I create a rewrite rules that uses the user agent language to serve the correct index_nl or index_fr page (without using Firebase functions)?
Update August 12th, 2020: Firebase Hosting now supports i18n internationalization.
Firebase Hosting rewrites are based on the requested path only. There is not support for such conditional rewrites in the Firebase Hosting configuration.
You might want to file a feature request for it.

Yahoo data feed url not working [duplicate]

This question already has answers here:
Has Yahoo suddenly today terminated its finance download API?
(4 answers)
Closed 5 years ago.
Has Yahoo stopped data feed service?
I was getting data using this link below until wednesday. Then stopped...
http://download.finance.yahoo.com/d/quotes.csv?s=AAPL+GOOG+MSFT&f=snbaopl1
Someone pointed out that URL has changed to this one below, but this doesn't work either...
http://finance.yahoo.com/d/quotes.csv?s=AAPL+GOOG&f=snbaopl1
It has come to our attention that this service is being used in violation of the Yahoo Terms of Service. As such, the service is being discontinued. For all future markets and equities data research, please refer to finance.yahoo.com.
It seems that Yahoo unfortunately discontinued the service.

Whole Word Search using Graph API? [duplicate]

This question already has answers here:
Using the Facebook Graph API to search for an exact string
(2 answers)
Closed 9 years ago.
I'm using the Graph API, but it's returning results I'm not looking for. I'm using /search?q=unmasked&type=post, but it's actually returning posts that contain unmask. I want to do a whole word search, but the Graph API seems to be stemming the search terms. Is there a way around this?
As far as I know, there is no way to search for exact expressions like you will be able to do on Google using double quotes: "To be or not to be".
Facebook intentionally implemented an algorithm to find similar words and help users to find relevant information.
But you won't be able to transcend it at the API level.
The only thing you can do, is to write a filter in your own language that checks in each returned post that "unmasked" is indeed included.
Edit: just saw that a duplicate question exists, you can get inspired from it (Using the Facebook Graph API to search for an exact string).

How old data can I get from Google Analytics?

Is there any limits on "start date" param, if I make request to Google Analytics?
e.g. Can I get 5 years old data?
Yes, you can. It works fine from 2005 for me.

Tutorial about web service

Can anyone give me good tutorial about web service?
i find below tutorial with example but doesn't work
1
2
3
for example if i want to show weather in my app should i get data from specific web site or i can get data from yahoo or other site about weather
SajjadZare,
I answered a similar question on SO and wrote a blog post about consuming Web APIs. Please let me know if this doesn't help you:
How to Consume JSON or XML Web APIs on the iPhone
The original SO question I answered
Cheers and best of luck,
Mark