photo_reference"" : ""CnRoAAAA8fKvfU3e_XzU5HK2-6h8bgpcZSyOlcpUGzE_o85f6SMmaVEvdi4O8zx2hnfoTkWvA4SKDYFhKmOqyquCthtAg-SdTXbgwnXwh5Y8H1547rLYswUAshGQSNsMRLDF1ZSiJpYco0JaKmAEeszvLilV0xIQLsgocTlvzqdKQInsJLMGaBoUVF9bMeyUFSSA4jAyzZ5XIDb56do""
photo_reference"" : ""CnRoAAAA8fKvfU3e_XzU5HK2-6h8bgpcZSyOlcpUGzE_o85f6SMmaVEvdi4O8zx2hnfoTkWvA4SKDYFhKmOqyquCthtAg-SdTXbgwnXwh5Y8H1547rLYswUAshGQSNsMRLDF1ZSiJpYco0JaKmAEeszvLilV0xIQLsgocTlvzqdKQInsJLMGaBoUVF9bMeyUFSSA4jAyzZ5XIDb56do""
Is it possible to create links that allow users to rate an application on the App Store and Google Play, without leaving the application? Most applications I have used have this functionality but I am not sure how to accomplish this with Appery.
Unfortunately that post is not very helpful to me. Could you please explain how I would include the standard ga script to use conventional analytics until the next release?
Could you please explain to me the correct approach to including Google mobile analytics into applications. Is there a way to include the google sdks for both IOS and Android?
The error displays in the browser console.
When sending a request to the Google Places Api and setting the data type to jsonp the response returns data but I get an unexpected token : error when trying to view in the browser. Any suggestions.
Okay, I realize what I was doing wrong.
I had to target the results data directly like this.
if(data.status == 'ZERO_RESULTS'){
// do something....
}
This is what the response looks like when it has no records.
{
Code: Select all
"html_attributions" : [
],
"results" : [
],
"status" : "ZERO_RESULTS" }
I need to know how to check if a Rest Service response is empty. I found another post on here that said to use if(data.length == 0){} but that does not seem to work for me. Is there something I am missing?