Missing return information in Google Knowledge Graph API response - google-apis-explorer

We used to get "detailedDescription" field in the result when querying "kgsearch.googleapis.com/v1/entities:search" REST API for an id.
This is not the case anymore (regression from the recent days). I also tried using Google API explorer and their sample and it's not returning the field as well.
https://developers.google.com/knowledge-graph/reference/rest/v1/?apix_params=%7B%22ids%22%3A%5B%22%2Fm%2F0dl567%22%5D%7D
Can someone know when it'll be fixed?
Should we add extra info now in order to get this field as before?
Thanks in advance.
According to Google example documatation
No detailedDescription field in result

Related

How to get grocery stores list as google showing in map

I am using Google Places API to get grocery stores list.
Query:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=32.715738,%20-117.161084&radius=12218&type=grocery_or_supermarket&key="GoogleAPIKey"
It is giving me some different data.
But I want list data like google provides in google map search as showing in attached screenshot: -
Is there any other way to get this list in json/xml format?
Please help. Thanks in advance.
You use type for searching with the API, but when you are on the maps webpage you use plain text.
If you use this link you get almost the same results as on the webpage except for Food 4 Less
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=32.715738, -117.161084&radius=2000&keyword=Grocery store&key=
Using the API you posted i was able to get a result that looks like what google explained in the documentation https://developers.google.com/places/web-service/search, if you can update your question by adding the response you are getting, maybe it will be easy to help you
Thanks for the suggestion guys.
I have resolved my query by using textsearch google api as mentioned below: -
https://maps.googleapis.com/maps/api/place/textsearch/json?location=""&radius=12218&type=grocery&key="GoogleAPIKey"
Thanks.

Facebook graph API explorer query not extracting all columns

I am a newbie to this Graph API Explorer, which, I found today, is something that lets me extract data from FB. This is really cool!
I was trying to extract user demographic information using the Graph API explorer from a group with about 2300 members that I own, however for some reason the query is not extracting anything other than name and id as you can see from the screen.
Experts, why is this happening? I believe I have ticked all relevant permission tick boxes to be able to perform this query.
Thanks in advance.

Accessing weight data via the Google Fit REST API

For the last 6 months I've been entering my weight into Google Fit, I now want to get my data out.
Accessing the Google Fit REST API hasn't been an issue. Finding my weight data amongst the all the accessible data has stumped me however.
Any pointers gratefully appreciated.
I can get all weight data
I found API request for all weight data
https://www.googleapis.com/fitness/v1/users/me/dataSources/derived:com.google.weight:com.google.android.gms:merge_weight/datasets/0-1443194884000000000
Last set is Start time and end time (in nanoseconds). Let me know if you have issue for weight Data. May be this query will help you.

Targeting using Criteria ID

Maybe you know if and how I can use Criteria ID taken from Adwords APi
Here to get targeted location and put it on map?
Thanks
I have not seen anyone attempt this before, however performing a geocode on the Canonical Name column would provide you with the desired result it seems?
Geocoding docs available here: https://developers.google.com/maps/documentation/geocoding/

Missing formatted_phone_number field in Google Places autocomplete API's getPlace Details response

I am trying to use Google places autocomplete API for one of my application.
It works allright. But, I dont get the key formatted_phone_number in the result for the place detail request.
This is what I've been trying:
Step1: Call to autocomplete api with keyword "Mike's chili" as below:
https://maps.googleapis.com/maps/api/place/autocomplete/xml?input=Mike%27s%20chili&types=establishment&sensor=false&key=AIzaSyC2L1pPVbgCXUFuobrHS6vjN1RPbjibaME
Step2: Use the reference key in the first result of above request and make call to google Places Detail api as below:
https://maps.googleapis.com/maps/api/place/details/xml?reference=CmReAAAAtR79EFJeGGLjMflCzFh_n5Rl4rEJfU_dg-zs-1ZyPVHQQmMneLO2P0J4APa3dpV2YvscqbyOK50iARnevHcUOnRvAc33hDGQQAPWxJbzSTw0GF3nDOXP1R7Zep68Yc37EhAmWbhrqVT3Ht-SffUHi1jgGhR81n4FV2ywKBkmbS8_4MrsI85w8w&sensor=false&key=AIzaSyC2L1pPVbgCXUFuobrHS6vjN1RPbjibaME
But, I dont get the field called formatted_phone_number in return. This happens for some of the other results also.
When I search for the same in Google maps, I get the phone number.
Can someone please help me on this?