Questions tagged [yahoo-api]

covers open webservices and APIs provided by Yahoo!

This tag covers questions related to the public Web Services and APIs offered by the Yahoo Developer Network to make it easy for developers to build applications and mashups.

References

784 questions
-1
votes
2 answers

How can I remove this JSON wrapper in swift?

I'm currently making an app in swift that essentially functions as a virtual stock trading game. I was able to get most of the data I need using Yahoo's YQL service. A particular feature that I am working on now is a search function so that users…
-1
votes
1 answer

YQL | why I'm getting a syntax error?

I'm trying to query a simple Google search using YQL but apparently it seems not working. Here's my exact…
Switch
  • 14,783
  • 21
  • 69
  • 110
-1
votes
1 answer

Is there a free Excel Addin Geocoder without limits?

I have about 10K city, st, zip rows. I need the Lat/Long for them. I have tried a few different addins, but they all use Google. I have heard Yahoo has a little bit more generous limitations but i cannot find any as well written as the Google ones.…
imadirtycunit
  • 125
  • 1
  • 10
-1
votes
1 answer

Yahoo api call returns 505 error

var value = 'New Delhi, India'; $yql_query_url = 'http://query.yahooapis.com/v1/public/yql?q=select * from geo.places where text='.value.'&format=json'; $ch = curl_init($yql_query_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,…
vini
  • 4,657
  • 24
  • 82
  • 170
-1
votes
1 answer

Can we generate yahoo API key with domain name that contains digit?

I have problem to generate yahoo api key. Can we generate yahoo API key with domain name that contains digit. ie. Test123.com?
-1
votes
1 answer

Yahoo forecastjson gives XML error

After browsing through this site, I found that you can get Yahoo weather in a JSON format using forecastjson. When I run: $.getJSON("http://weather.yahooapis.com/forecastjson?w=2112762724", function(data){ ... }); I get the following error:…
Vinny
  • 309
  • 3
  • 11
-2
votes
1 answer

Move WordPress site from Yahoo Small Business

I am trying to move a site from Yahoo Small Business to a local hosting company. I am able to log in to the host with FileZilla. I have also downloaded the files from YSB and have them locally. But the local hosting company gave me a test host…
Aurora
  • 1
-2
votes
3 answers

yahoo finance API stopped working

Anyone else having problems with this API? I have just recently started working with it but suddenly everything that was working both mine and others is no longer working, first the CSV interface and now the YQL interface. Surprised I don't see…
rolandr
  • 7
  • 1
-2
votes
1 answer

Yahoo Stock API Format

I am using yahoos stock api to pull information for my java application, I can pull high and low using URL yahoofinance = new URL("http://finance.yahoo.com/d/quotes.csv?s=" + stocks[0] + "+" + stocks[1] + "&f=hg"); I figure that f=hg is…
CHouse95
  • 111
  • 8
-2
votes
1 answer

How to get a JSON result into a Python variable?

I would like to get the temperature via Yahoo! temperature API into a Python variable. This is my code: import urllib2, urllib, json baseurl = "https://query.yahooapis.com/v1/public/yql?" yql_query = "select item.condition from weather.forecast…
Kaguei Nakueka
  • 993
  • 2
  • 13
  • 34
-2
votes
1 answer

How to write the java code to get contact list from yahoo

Possible Duplicate: Taking contact list from hotmail gmail yahoo in java? How to write the java code to get contact list from yahoo
BheemK
  • 119
  • 1
  • 1
  • 6
-2
votes
1 answer

Importing Contacts of different websites into our database

My project requires that I should let the user using my website to either import his/her contacts from gmail,yahoo, hotmail,facebook,linkedin so that I can save them their contacts email id in our database and send them invitation email to join our…
user1400290
  • 1,682
  • 5
  • 23
  • 43
-2
votes
2 answers

Issue on using Yahoo! Web Services and APIs(YQL)

I am using Yahoo Api and Web Services.. For example: http://query.yahooapis.com/v1/public/yql?q=select symbol,DaysLow,DaysHigh,PreviousClose from yahoo.finance.quotes where symbol in…
Surya
  • 439
  • 3
  • 9
  • 31
-3
votes
1 answer

Very new to python and struggling to use this API

How do I extract a specific data point from the "ticker.financials". Say I wanted to assign operating income in 2020 on that chart to "Operating_Income" import pandas_datareader.data as web import datetime import requests import yfinance as…
-3
votes
2 answers

Get the URL part after '#' hash in C#

I'm following this guide, until the final step when I have to get the access token from the URL. But it is appended behind a # character, and I have no idea how to get that part of the URL. Someone please tell me a code that works, or maybe a…
Negius
  • 1
  • 1
1 2 3
52
53