Hello,
I have an iPhone app that loads the following URL:
http://maps.google.com?q=Apple Stores&ll=37.331689,-122.030731&z=3
As expected, the google maps app loads on the phone, but zooms to the entire US. It does not appear to be respecting the z= parameter, or at least, not allowing a zoom level that shows stores in the area.
I'm using Django with google app engine. I'm using the google furnished django app engine helper project.
I'm attempting to create a Django modelformset like this:
#MyModel inherits from BaseModel
MyFormSet = modelformset_factory(models.MyModel)
However, it's failing with this error:
'ModelOptions' object has no attribute 'fields'
Apparently modelformset_factory() is expecting MyModel to implement a 'fields' accessor.
Anybody successfully used a modelformset with GAE datastore? Or is this a fundamental incompatibility between Django and GAE?
I have the following:
string html_string = "http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=pharma";
string html;
html = new WebClient().DownloadString(html_string);
and when I get the length of HTML, it's returning only the first 28435 characters.
Is it possible that Google is not allowing webclient access?
Hi,
I want to parse google and yandex search results for my little website analyzer utility.
so i should send hundreds requests per minute. What is good practice for this issue?
Is google search api a good way?
We are building a website on Google App Engine, using django patch.
We would like to use Facebook connect for two purposes:
Authenticate users.
Access user's social data.
Searching for a solution in the usual places (google, FB, SO) brigs up a lot of noise, many partial solutions and no clear answer.
So the question is this: does anyone has a clear working solution? maybe even a recipe?
Thanks.
As maybe some of you know google chrome has put some severe limitation on greasemonkey scripts.
Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or GM_getValue.
And without require, I can't find a way to include jquery library in Greasemonkey script under google chrome.
Does anybody have some advice for the matter?
Thanks in advance.
i am creating a ria in adobe air with google app engine based server side. i am using google client login for user login purpose. which is working , but how do i maintain session securely ? ( i.e. from man-in-middle attacks etc ) . what are the best practice in this kind of applications ?
I'm attempting to interact with the Google contacts API through Rails via and oauth-plugin. I need to retrieve and update Google contacts. I know that the portablecontacts gem will retrieve contacts, but does not allow for adding or updating. I was wondering if anyone knew of a gem that will handle this type of interaction. If not what would be the best method to implement a gem that would make it easier to handle the responses.
A site that I was working is resolving to a staging server through google. I've removed all the information. How long does it take for google to update the information so that it does not show up. is there anyone that I can contact to move this along?
hi ,
I'm planning to work in Google after 10 years from now .
I need to know what is the requirements that I should have to work in Google as a Web Applications Developer programming languages ,skills,educational levels .....etc?
Thank You
i am using the google piechart but if i put the chart inside of a jquery ui tab it shows up very small. is there some css conflict here maybe.
Has anyone been able to get google piechart working inside of a jquery ui tab where its not the first visible tab ?
I am trying to get selected text from browsers(ie,opera, firefox..) using my C# application.
I tried SendKeys.Send("^c") then reading the selected value from clipboard this method works fine with ie and Firefox.., but it doesn't work with Google Chrome.
How can I get the selected text from Google Chrome and why SendKeys.Send("^c") doesn’t work?
Hi,
Was wondering, how do I add a custom marker to google maps, JavaScript, integrated into my site.
This code adds a regular marker:
var marker = new GMarker(center);
map.addOverlay(marker);
but where do I insert an image tag (say, "marker.png" ) for it to appear instead of the regular google marker?
Thanks!
Hello. Im doing a webpage about apples (the fruit), I want to include Google search results for apple recipes in the bottom of the page. How can I do this? If there is a copy-paste code in Google, I didn´t find it. Thanks
Setting oauth with some providers is always kind of weird;
currently hitting a problem concerning the callback,
i had made everything work very nicely with google, getting redirected back specifying the callback url in both the get_request_token and redirect url param oauth_callback=
but it then for some reason stopped redirecting, i'm currently stuck with the pin to specify over at google.
I seeking explanations about this, if anybody went through the same kind of problem.
thx
Has anyone tried to implement Metro web services on GAE-Java. It is not lsited on http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine and I would like to know if GAE will support it
When using Google Chrome, I receive the following error message:
Error:
Uncaught SyntaxError: Unexpected token <
It occurs directly after my doctype declaration at the top of my HTML page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Any ideas what this JavaScript error message is? It only seems to occur with Google Chrome (works fine in Safari, Firfox and IE)
I am using Google Contact API to add Contacts and Groups into Google Apps (gmail).
I am able to create Contacts as well as Groups.
But now i want to:
Put contact into particular group at the time of creation of Contact.
Hi,
i have a webview in my iphone app where a google map location is opened like;
Directions
now the google map native app opens fine, but how could i add a RETURN button so it would jump back to my html page. Now i have to click my home button and the app close back to the desktop, so i have to start my webview again.
in android its more easy, because there is always a back button and after viewing my gmap i simply back in my webview.
thx
chris
I'd like to make a script which sreach in google and shows the 1st relevant image.
I mean, if you type to the input field: car
if you search to word "car" via google and it suggest the 1st image for me.
What do you think, are there any method to do this?
Hi,
I'm planning to work for Google in 10 years.
I need to know what are the requirements that I should have to work in Google as a Web Applications Developer: What programming languages, skills, educational levels, etc.
Thank You
I am trying to put a kmz file from my server in a google-maps-map using ArcGIS Server Google Maps API. It works fine with KML but KMZ does not show up. Any suggestions?