Makes an authenticated request within a workflow, using OAuth 2.0 to write to Firestore.
Code sample
YAML
What's next
To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .
Makes an authenticated request within a workflow, using OAuth 2.0 to write to Firestore.
-
initialize
:
assign
:
-
project
:
"myproject123"
-
collection
:
"myEntries"
-
document
:
"Visits"
-
write_item
:
call
:
http.request
args
:
url
:
${"https://firestore.googleapis.com/v1/projects/"+project+"/databases/(default)/documents/"+collection+"/"+document}
auth
:
type
:
OAuth2
method
:
PATCH
body
:
name
:
${"projects/"+project+"/databases/(default)/documents/"+collection+"/"+document}
fields
:
Counter
:
integerValue
:
7
To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.