Region ID
The REGION_ID
is an abbreviated code that Google assigns
based on the region you select when you create your app. The code does not
correspond to a country or province, even though some region IDs may appear
similar to commonly used country and province codes. For apps created after
February 2020, REGION_ID.r
is included in
App Engine URLs. For existing apps created before this date, the
region ID is optional in the URL.
Learn more about region IDs.
This page describes how to issue HTTP(S) requests from your App Engine app using the URL Fetch service for second-generation runtimes.
Before following the instructions on this page, we recommend you use language idiomatic solutions to issue HTTP(S) requests before using the URL Fetch service. The primary use case for using the URL Fetch is when you want to issue HTTP(S) requests to another App Engine app and assert your app's identity on that request.
For details on request size limits and which headers are sent in a URL Fetch request, see Outbound Requests.
Issuing an HTTP request
To use the URL Fetch service to issue outbound HTTP(S) requests, you must
explicitly call the
urlfetch
library.
To issue an outbound HTTP request, you can use any of the following libraries:
- For improved code portability, use the Python standard library
urllib.request
to issue HTTP requests. - Use a third-party library, like
requests
. Explicitly call the
urlfetch
library and use theurlfetch.fetch
method.
Import the urllib.request
library:
import urllib.request
Next, use urllib.request
to perform the GET
request:
url = 'http://www.google.com/humans.txt'
try:
result = urllib.request.urlopen(url)
self.response.write(result.read())
except urllib.error.URLError:
logging.exception('Caught exception fetching url')
The following snippets demonstrate how to perform a basic HTTP
GET
request using urlfetch
. First, import
the urlfetch
library from the App Engine SDK:
Next, use urlfetch
to perform the GET
request:
The following snippet demonstrates how to perform a more advanced request,
submitting data from a web form via a HTTP POST
request using
urlfetch
:
Setting a request timeout
You can adjust the default deadline by using the
urlfetch.set_default_fetch_deadline()
function. This function stores the
new default deadline on a thread-local variable, so it must be set for each
request, for example, in a custom middleware.
Disabling redirects
If you are using URL Fetch, the underlying URL Fetch service follows up to five redirects by default. These redirects could forward sensitive information, such as authorization headers, to the redirected destination. If your app does not require HTTP redirects, it is recommended that you disable the redirects.
To instruct the URL Fetch service to not follow redirects, set the fetch
method's follow_redirects
parameter to False
.
Issuing an HTTPS request
To issue an HTTPS request, set the validate_certificate
parameter
to true
when calling the urlfetch.fetch()
method.
Issuing an asynchronous request
HTTP(S) requests are synchronous by default. To issue an asynchronous request, your application must:
- Create a new RPC object using
urlfetch.create_rpc()
. This object represents your asynchronous call in subsequent method calls. - Call
urlfetch.make_fetch_call()
to make the request. This method takes your RPC object and the request target's URL as parameters. - Call the RPC object's
get_result()
method. This method returns the result object if the request is successful, and raises an exception if an error occurred during the request.
The following snippets demonstrate how to make a basic asynchronous
request from a Python application. First, import the
urlfetch
library from the App Engine SDK:
Next, use urlfetch
to make the asynchronous request:
Setting a request timeout
To set a timeout for your request, set the urlfetch.create_rpc()
method's deadline
parameter when you create your RPC object.
Using a callback function
You can define a callback function for your RPC object. The function
will be called when your application calls a method on the
object—such as wait()
, checksuccess()
, or
get_result()
—that causes the object to wait
for the request to complete.
To use a callback function to handle the result of your fetch call:
- Create a helper function to define the scope of the callback.
- Create a handler function to handle the result of your fetch call.
- Set your RPC object's
callback
attribute to the helper function.
The following snippet demonstrates how to invoke a callback function:
Issuing a request to another App Engine app
When using URL Fetch to issue a request to another App Engine app, your
app can assert its identity by adding the header X-Appengine-Inbound-Appid
to
the request.
If you instruct the URL Fetch service to not follow redirects, App Engine will add this header to requests automatically. See Disabling redirects for guidance on disabling redirects.
What's next
Learn about the URL Fetch service, such as the headers that are sent in a URL Fetch request in Outbound Requests.