Accessing Google Map Listing From GData - iphone

Im trying to create a "search nearby" shops on iphone,
but i can not find any solution on how to get the data from Gdata Libraries.
http://code.google.com/p/gdata-objectivec-client/
They only support the following Google services provides a Google data API, but not google maps?!
Google Base
Blogger
Book Search
Calendar
Code Search
Contacts
Documents List
Finance
Health
Picasa Web Albums
Spreadsheets
Webmaster Tools
YouTube
Any solution or idea where i should look for would be much appreciated.

As far as I know, the only way to do this is to use the KML output format from a standard Google search:
http://maps.google.com.au/maps?f=q&source=s_q&hl=en&geocode=&q=italian%20category:restaurants&sll=-37.816518,144.890628&sspn=0.007247,0.012424&ie=UTF8&z=12&output=kml
Although you should check Google's terms and conditions to see if you're allowed to use that as an API.

Related

Google analytics, adwords, facebook data on my server

I've got client who has several different websites, each website having Google analytics account.
Our marketing department is also running Google Adwords/Facebook/Instagram ads for each of those websites.
I want data/leads from Google and Facebook on my local server. I also want real-time data that should automatically update from Google & Facebook with fixed time interval.
I've been Googling and experimenting with the Analytics API docs, but no luck.
Any one please help me to find better solution.
#This question is not for this website but I didn't find any other option.
Thank you.
There are several services that your are looking for. Use this info like a getting started. Every service has his own simplicities and complexities.
Adwords
Use Campaign Performance Report to download your campaign's metrics. See examples in PHP, Java, Python, etc.
Analytics
Use RealTime API to get real time data. See examples
Use Core Reporting API to get general data. See examples
There is a very useful tool: Query Explorer to see Analytics API working
Facebook / Instagram
Use Ads Insights API to download your campaigns's metrics. See examples

Retrieve google news through Google CSE Api

I am searching a solution to retrieve news from google news.
I am already retrieving the news from the RSS feed. But this is not scalable, and I will get blacklisted.
I wanted to use Google CSE API (with billing option, I want to be able to send more than 100 000 queries per month), but it seems not to be possible to use it directly with google news. (it seems to be only working with google image, or global web search)
I have already read about Bing Search API, and Yahoo Boss API. I want to know if there is a way with google news. I have already tried to set the site only to google news, but I am getting old news article clippings.
I have already read this discussion(but there is no answer) and this discussion had no new solution for me.
Is there a billable way of doing high volume query directly to google news ?
Thank you
We (Google) currently don't offer programatic access to Google News, and unfortunately I'm not aware of any plans to change that.
You can still use RSS though for free, just watch out for the number of requests you send our way.

Google Custom Search Engine how to show ads with JSON/atom API

I am creating a search engine using Goolge Custom Search API (JSON/atom). I have associated my search engine with an adsense account but when I make queries I don't get any ads with search results also I have checked the Google Custom Search documentation and it does not mention anything about ads in the response of the API call, it only tell about the search results and the promotions.
I want to know if its possible to get search ads with JSON/atom API.
Thanks in advance,
Kamran

Need Website rating apis for iPhone

I want website rating api that gives me the status of website in different search engines. i want to send Keyword, Website and Search engine in api and they should return me the ranking of the website. so please can you suggest me that type of apis.
If api returns me data in xml format that very good.
Thanks
You might want to take a look at http://www.alexa.com/
The developer tools are located here: http://www.alexa.com/siteowners/data

geo local google Maps API business results foursquare like for iphone

Im using google map api and im being limited to 8 searches everytime im searching for a business place and its not very accurate( meaning that there is a nearby mcdonalds that did not appear on the search). Does anyone know of any good tutorials on how to increase the amount of results nd how is it possible to set the results so that they appear automatically providing a list of the names of all nearby business within a radius kind of like foursquare or facebook places?
It sounds like you are either using the deprecated Google Local Search API, or the GoogleBar for Maps API v2. If you switch to Maps API v3 you can use the new Places library, which will return 20 results per query in JSON format so that you can render them on and alongside the map as you please:
http://code.google.com/apis/maps/documentation/javascript/places.html
Many thanks,
Thor.