Implementing Google Maps in QlikView 11 - qlikview

I am trying to implement google map in Qlikview.
I have Newjersey county information with latitude and longitude. I am trying to get static google API key but getting the following error.
Please let me know how to get new version of API key.
Error:
The Static API v1 has been deprecated as of 2009, and truned down in January 2016.

You are using the old (depricated) API version. Please check your URL and ensure it matches this: http://maps.googleapis.com/maps/api/staticmap...

Related

What is the correct way of getting an app key in google?

I'm trying out a simple code I found using www::google::customsearch. I know that google and yahoo has already change its policy in allowing these searches.
use strict;
use warnings;
use Data::Dumper;
use WWW::Google::CustomSearch;
my $api_key = 'Your_API_Key';
my $cx = 'Search_Engine_Identifier';
my $engine = WWW::Google::CustomSearch->new(api_key => $api_key, cx => $cx);
print Dumper($engine->search("Google"));
I am not sure if this module will work. I was just trying to test it. This is a sample from cpan. I tried running the code I keep getting a missing argument which is the api key.
This is so far what I have done. I have signed in google and created a custom search engine. I copied the search engine reference code. I have tried the example code in javascript. I placed it in a sample html. It works.
I have also signed in google and turned on custom search engine api, and generated an app key.
What is the correct step in getting an application key?
I tried running the code I keep getting a missing argument which is the api key.
You did not try to execute the given code as it is, did you? You are supposed to pass the actual key in below line.
my $api_key = 'Your_API_Key';
Your_API_Key should be replaced with the key you get from Google API console.
What is the correct step in getting an application key?
Quoting from the documentation on how to find it.
The JSON / Atom Custom Search API requires the use of an API key,
which you can get from the Google APIs console. The API provides 100
search queries per day for free. If you need more, you may sign up for
billing in the console.
The official Google API document can be found here. For more
information about the Google custom search, please click here.

Pinterest API get statistic for URL

I am trying to find a way to get statistic for the URL from Pinterest API.
Like facebook graph API: URL Object
Or linked in countserv endpoint:
https://www.linkedin.com/countserv/count/share?format=json&url=https://www.linkedin.com/pulse/breaking-5-major-boolean-syntax-changes-irina-shamaeva
I know it is possible because this site is returning the number of pins for given url:
https://www.sharedcount.com/#url=https%3A%2F%2Fwww.facebook.com%2F
Does anyone know how to get these data from Pinterest API?
There is no officially supported way to do this with the developer API. That said, the widgets use this for the count bubbles using this API
https://widgets.pinterest.com/v1/urls/count.json?url=<url>.
I wouldn't depend on it for anything important tho since it is unsupported and can change/be removed at any time.
You can get the number of pins calling this url
http://api.pinterest.com/v1/urls/count.json?callback=&url=http://stylehatch.co
It will return an object like this:
({"count": 0, "url": "http://stylehatch.co"})

espn api error from URI link

I have just signed up to have access to espn api and I just want to access a specific teams data but an error message appears saying "timestamp" :"2014-04-06T22:36:39Z","message" :"Improper API URI","status" :"error","code" :404"". The link I'm putting in with my api key is "http://api.espn.com/v1/sports/soccer/english-premier-league/arsenal?apikey=****". I know you need an id with the team but where do I get that from and I don't think the link recognizes 'english-premier-league'.
Have you tried using the online API testing tool at http://developer.espn.com/io-docs?
Enter your API Key, and then find the endpoint to try. Note that not all endpoints are supplied via the dropdown boxes.
With a little detective work, I found what you might be looking for
http://api.espn.com/v1/sports/soccer/eng.1/teams/359?apikey=xxxxxxxxxxxxx

city not found Yahoo weather api

I am using yahoo weather api to pull weather data for a certain location. I am getting error that says "city not found".
The location is "Islamabad, Pakistan" with WOEID=2211027
Here is the xml request uri, i am using:
http://weather.yahooapis.com/forecastrss?w=2211027&u=c&d=7.xml
It was working few days back. But now it shows error saying city not found, Any ideas?
Thanks Awais
Do you have the coordinates?
If yes, you can try metwit weather API.
Here is a working and simple jQuery example : http://jsbin.com/isukam/1
Disclosure: I own this sweet API. Let know if you need help.

search nearby places using google maps API URL gives Request Denied

hi i want to find nearby places using current location.i went through many documentation and also logged in developer.google.com/console and created new project.In services i enabled google api services,but when i try to place this below link in the browzer https://maps.googleapis.com/maps/api/place/search/json?location=12.91136601187478,77.598882598177313&radius=5000#&types=bar#&sensor=true&key=MYkey
it gives
{`"html_attributions" : [],``
"results" : [],
"status" : "REQUEST_DENIED"
}`
why this happens?? i am not able to find solution for this even though going through many documentation can anyone tel me the solution for this.
Use Google nearBySearch.
There is example:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=AddYourOwnKeyHere
On the link below you can find full spec. In your request you need to fill out all required parameters (location, radius, sensor and AppKey), otherwise you will get "REQUEST_DENIED"
https://developers.google.com/places/documentation/search
Don't forget to turn on service "Places API" under developer console.