A tiny utility to authenticate requests using GCP OAuth and send CORS headers in Flask
Project description
A small class that helps with authentication and CORS for HTTP-triggered cloud functions written in Python and hosted on GCP
Please note: This is not an officially supported Google product.
If you are using OAuth to authenticate to a Cloud Function written in Python and hosted on GCP, and your client is running in a browser, this is for you. If not, you probably won't find this useful.
This class does three things:
- Responds correctly and configurably to the HTTP OPTIONS method used by browsers to do pre-flight checks as part of CORS
- Retrieves an OAuth2 token supplied in the
Authorization
HTTP header, validates it, and then fetches the information encoded by the token - Gives you back either a valid token, or a response to send back to the user in case a valid token can't be found
Installation
You can install the latest version of this package using pip:
python3 -m pip install --user gcloud-flask-oauth-cors
It's hosted on pypi: https://pypi.org/project/gcloud-flask-oauth-cors/
Use
If you don't have one, create an OAuth client ID and pass it as an environment variable to your cloud function. Then, you can use the following:
import gcloud_flask_oauth_cors as oauth
def my_function_name(request):
auth = oauth.Auth(os.getenv("OAUTH_CLIENT_ID"))
id_info = auth.get_id_info(request)
if id_info is None:
# If we were called with the HTTP OPTIONS method, this will return the relevant CORS headers.
# If another HTTP method was used and we can't authenticate, this will return a 401 (Unauthorized)
return auth.get_response()
# Do something with the id_info, for example:
print(id_info["sub"])
On the client side, you can use Google Sign-in. Make sure you pass your id_token
in any requests like this:
let xhr = new XMLHttpRequest();
xhr.setRequestHeader("Authorization", "Bearer " + id_token);
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gcloud-flask-oauth-cors-0.1.1.tar.gz
.
File metadata
- Download URL: gcloud-flask-oauth-cors-0.1.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afa1a18c5cfc2eedc3e438bc7f48aece600f34f4adae922182ea59094c3a55b7 |
|
MD5 | ce1256600c5e732eafce75012816456e |
|
BLAKE2b-256 | 61192d7f3d5c079bc4ad80a20f59ee580f213c17a55d3d9dd1c53a31caa99c1e |
File details
Details for the file gcloud_flask_oauth_cors-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: gcloud_flask_oauth_cors-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54244aae0cd03229801c74e993223949eb053373b0f53849f00b110408be43e2 |
|
MD5 | b86ba1661be9302a0834bdb4b533bdc3 |
|
BLAKE2b-256 | 516a9dc480642386f4f25eeeb6147cda503a6572e0825cffe64168a336747b34 |