The urlfetch tag has no wiki summary.
0
votes
0answers
33 views
Google App Engine - urlFetch address not in _netblocks.google.com
For software I am developing, I need to have a list of external IP addresses that Google App Engine uses for urlFetch requests. Getting a complete list is proving difficult.
The accepted wisdom as ...
-1
votes
0answers
25 views
ResponseTooLargeError Exception on 11MB File
I am getting a ResponseTooLargeError when retrieving an 11 MB file using urlfetch on Google App Engine. The documentation clearly states that the quota is 32MB. Is there any other way the exception ...
1
vote
1answer
35 views
ValidationError from mandrill with google app engine's urlfetch
Google app engine app with python 27 from localhost trying to send mail through mandrill's service.
I'm receiving a :
{"status":"error","code":-1,"name":"ValidationError","message":"You must specify ...
1
vote
4answers
69 views
Python - very simple multithreading parallel URL fetching (without queue)
I spent a whole day looking for the simplest possible multithreaded URL fetcher in Python, but most scripts I found are using queues or multiprocessing or complex libraries.
Finally I wrote one ...
0
votes
1answer
54 views
Missing source code from webpage using UrlFetchApp.fetch().getContentText
Not all of the view-source:http://www.portofhueneme.org/home.php from the site is retreived from UrlFetchApp.fetch().getContentText.
I heard UrlFetchApp is just a wrapper for python's urllib2 ...
0
votes
2answers
80 views
Google Apps Script UrlFetchApp with Dynamic Web Pages
A few weeks ago I started learning Javascript and the Google Apps Script API, specifically in regard to spreadsheets. I have been trying to make a spreadsheet that fetches web pages and pulls stats ...
0
votes
0answers
401 views
HttpURLConnection App Engine Java Example for POST Request does not work
I am trying to do a POST request using urlfetch under an app engine application.
I have followed the instructions (and code) extracted from the simple example found at the App Engine documentation ...
0
votes
2answers
39 views
GAE app raising DeadlineExceededError locally and DownloadError deployed
This is very weird. The title says most of it, my code should say the rest. Here's my main.py file:
from google.appengine.api import urlfetch
import webapp2
import jinja2
import json
import os
...
1
vote
2answers
86 views
Filter/shorten the AJAX/get html by ID
I am currently rewriting my error/faq messages using markdown(instead of previously used HTML content stored inside database). Now, I have temporarily setup a page errors.php where a text-area shows ...
1
vote
0answers
41 views
Python GAE: raised ValueError(Unpaired high surrogate) with json.loads only on production server
On GAE with Python, I'm using urlfetch to fetch a json string from Flickr. When I try to load that string with json.loads on the production server the exception "raised ValueError(Unpaired high ...
1
vote
1answer
128 views
Comparing async urlfetch to urllib2 with threads in google app engine
I have to make suds runs asynchronously,
I was thinking about two ideas:
(easier) Run each suds call in separate thread because GAE python 2.7 runtime allows it.
(much harder) Rewrite suds lib to ...
1
vote
1answer
74 views
GAE - POST an image from BlobStore to an outside server using urlfetch
I have a Google AppEngine app (written in Python) in which I have stored a lot of images inside the BlobStore (which I access via images.get_serving_url( blob_key )).
I am trying to figure out how ...
1
vote
2answers
62 views
GAE - How can I combine the results of several asynchronous url fetches?
I have a Google AppEngine (in Python) application where I need to perform 4 to 5 url fetches, and then combine the data before I print it out to the response.
I can do this without any problems using ...
1
vote
1answer
71 views
Import urlfetch doesn't work on Jython Google App Engine
I'm using Jython on Google App Engine, but I can't get 'import urlfetch' to work. Other imports like 'import sys' and 'import zlib' work, but not 'import urlfetch'. I get a 500 Server Error. What am I ...
0
votes
0answers
58 views
Retrieving the bare text at a particular URL emacs
Before posting this question I tried to using browse-url-emacs and C-x C-f but in vain.
The question: Is it possible to retrieve the entire text at a particular url or even the entire server response ...
1
vote
0answers
73 views
How to call GAS script from GAE (python)
i've an Google Apps Script published as a service, access is set to any user of my domain, execution is set for owner user.
in this way it require user authentication when try direct access by url
...
1
vote
1answer
144 views
Python - GAE - Script loop consuming much memory
I am using the following script to create some rss snapshots (just saying).
The script runs on a backend and I am having some very heave ever increasing memory consumption.
class ...
0
votes
1answer
84 views
Get text of php file without executing it - using GAS urlfetch()
I'm using a general Google Apps Script function to be able to read, prettify and publish Google Apps Script code and data from a scriptdb. I've recently extended it to publish code from a Gist or from ...
1
vote
0answers
276 views
Google App Engine: URLFetch maximum timeout is 250 seconds from task and not 600 seconds (10min)
According to the official docs, the timeout for a http request via URLFetch on Google App Engine is 10 minutes if issued from a task:
...
3
votes
1answer
116 views
Start backend with async urlfetch on Google App Engine
I am experimenting with several of GAE's features.
I 've built a Dynamic Backend but I am having several issues getting this thing to work without task queues
Backend code:
class ...
0
votes
0answers
101 views
Need to increase Timeout for URLFetch.Fetch(url)
I have a Keynote API that I use to provide metrics for Week to Date, Month to Date, and Year to Date performance Metrics. The Week to date responds quickly, Month to Date sometimes Times out, and ...
0
votes
0answers
94 views
struts2 in gae:: Fetching Url working in local but not in domain
I'm trying to fetch a url using struts2 framework.It works in local environment,but not when I host in domain.But the same url when i tried to access using simple servlet application it works both in ...
0
votes
1answer
149 views
Using Google Script to scrape content that is loaded via javascript
I would like to read some data from other websites for a project using Google Script. Usualy, with somewhat static content, this works fine but I am new to javascript and to Google Script and thus do ...
1
vote
1answer
201 views
Invalid Argument with UrlFetch
I am trying to run a MongoLab (REST based access to MongoDB) query via Google Apps Script. The URL is generated from the logger is shown below
...
0
votes
1answer
121 views
Is this a good use case for ndb async urlfetch tasklets?
I want to move to ndb, and have been wondering whether to use async urlfetch tasklets. I'm not sure I fully understand how it works, as the documentation is somewhat poor, but it seems quite promising ...
1
vote
0answers
82 views
GAE Java URL Fetch; get the status message using low-level API
I am writing a Java GAE app and relying on URL Fetch to send HTTP requests to other servers (see here. Up until this point, I had been using their HttpUrlConnection interface implementation in order ...
1
vote
0answers
255 views
Java GAE UrlFetch; Ignore/Disable cookies when sending HTTP request
I am writing a Java GAE app that uses URL Fetch (via the HttpURLConnection class) in order to send HTTP requests to and receive HTTP responses from other web sites. One such site is the iTunes ...
2
votes
1answer
199 views
How to catch DNSLookupFailedError in Python on GAE?
I test URLs provided by people with urlfetch to catch wrong links.
result = urlfetch.fetch(url)
When I provide an URL such as «http://qwerty.uiop» the log says there was «DNSLookupFailedError», but ...
2
votes
1answer
267 views
GAE Golang - urlfetch timeout?
I am having issues with urlfetch's timeouts on Google App Engine in Go. The app does not appear to want to take a longer timeout than about 5 seconds (it ignores a longer timeout and times out after ...
2
votes
3answers
282 views
How to local test gae golang urlfetch through proxy?
My urlfetch client works fine when deployed to appspot. But local testing (dev_appserver.py) through proxy has issue. I can't find any way to set proxy for urlfetch.Transport.
How do you test ...
1
vote
1answer
190 views
HTTP Post on Google App Engine only works half of the time
I have used URLFetch class to do HTTP Post in Google App engine to my php file (on some different website).
This is what I have
try{
byte[] data = ...
0
votes
1answer
292 views
using HTTPRequest setPayload in google app engine
I am trying to do HTTPRequest Post via Google App Engine.
This is what I have so far
URL url = new URL("http://myurl.com/myfile.php");
HTTPRequest request = new HTTPRequest(url, HTTPMethod.POST);
...
0
votes
1answer
111 views
Does Java GAE UrlFetch support HTTP PUT?
How do I do an HTTP PUT request using the UrlFetch service for Google App Engine's Java runtime?
The following code in my application will send a POST request:
URL url = ...;
HttpURLConnection conn ...
4
votes
3answers
1k views
GAE - AppEngine - DeadlineExceededError: Deadline exceeded while waiting for HTTP response from URL:
I have a Google AppEngine application which runs great on my local machine. The app posts a image (from a url) to my facebook wall. However, when I deploy it to Google's servers, I get
an error:
...
10
votes
3answers
421 views
Loading a custom key store in Google App Engine Java application
I want to open a HTTPS connection in a Google App Engine app using the URLFetch service. To be able to verify the SSL certificate of the server my app is talking to, I am using my own keystore file. I ...
1
vote
1answer
937 views
How to stop going to redirected URL in Google App Engine with Python?
I'm using urlfetch from google app engine, but it keeps going to the redirected final page even though I use:
result = urlfetch.fetch(classUrl, payload=None, method=urlfetch.GET, headers={}, ...
2
votes
4answers
372 views
Using Google AppEngine Urlfetch instead of urllib2
What is the difference between googles urlfetch over the python lib urllib2 ?
When I came upon Google's urlfetch i thought maybe there were security reasons. Perheps google were safer in terms of ...
0
votes
2answers
168 views
data from htaccess
i want to fetch all data from htaccess i know it is stupid type of question
but i just wanted to know whether it is possible to get only user-friendly links from list of htaccess rules
RewriteRule ...
0
votes
1answer
373 views
How to get all cookies with urlfetch?
In accordance with GAE fetch documentation, cookies are not handled with redirects:
Cookies are not handled upon redirection. If cookie handling is needed, set follow_redirects to False and handle ...
3
votes
1answer
76 views
URL fetch: prevent abuse, mailcious urls etc. in python/django
I'm building a webpage featuring a very much a-like the facebook wall/newsfeed. Registered users (or through Facebook-connect, google auth) can submit urls. At the moment, I'm taking these URLs and ...
1
vote
1answer
176 views
What is the UrlFetch Post Size Limit?
I'm trying to find out what the UrlFetchApp's Post Size Limit is? A script uploads a few emailed attachments to a web service, and is getting back the following error, "Limit Exceeded: UrlFetch Post ...
1
vote
1answer
215 views
How to set globally the URL fetching timeout?
I'm developing an application running on App Engine. One of my Task calls a web service. To do that I use JAX-RS. However, one of the call reachs the time out set by app engine (5 secondes). I'd like ...
0
votes
1answer
92 views
How to fetch the IE history
Can I fetch the History of Internet Explorer in xml / text file? I tried to fetch the content that are inside IE browser but somehow unable to do it as I don't know how to do it?
The reason for this ...
2
votes
1answer
402 views
Unable to connect to external services from App Engine development server with urlfetch or urllib2
The following code works in the Python interactive shell:
import urllib2
result = urllib2.urlopen("http://www.google.com/")
and gives a 200 result.
If I run the same code in an AppEngine app ...
1
vote
1answer
125 views
Google Url fetch service sudenly start to fail
I've been using the google code Url fetch service in a script attached to docs spreadsheet, and it had been working for more than a year. But suddenly, upon migration of docs to google drive, the ...
0
votes
0answers
64 views
setValue(contLength) is returning unexpected value
Here is the complete script.
function check() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet1 = ss.getSheets()[0];
var dataRange = sheet1.getDataRange().getValues();
for (var ...
1
vote
1answer
212 views
got Validation of viewstate MAC failed when sending post request from google app engine via url fetch service
I have a task to fetch html from a website, before I go to that page I need to log in.
I use a low-level api url fetch service. Here is my code test code:
private String postPage(String ...
0
votes
1answer
825 views
Google apps script urlfetch encoding URL
I would like to use urlfetch to populate a spreadsheet with page data but the URL that I am trying to use is coming back with an error as an invalid argument. I think the problem is that I am using ...
1
vote
1answer
535 views
Google App Engine - Basic Cookie Handling with URLFetch
Experts,
It seems that retrieving even the most basic websites using google app engine can be quite challenging!
In my case I would like to retrieve the website at this url:
...
0
votes
2answers
180 views
Google App Engine - Cannot Correctly Receive a GZIP HTML File
Python and Google App Engine Experts,
I would like to retrieve the TD Bank Mortgage Rate website located at this link:
"http://tdbank.mortgagewebcenter.com/Default.asp"
I learned Python and Google ...


