https namespace Stay organized with collections Save and categorize content based on your preferences.
Functions
| Function | Description |
|---|---|
| hasClaim(claim, value) | |
| isSignedIn() | |
| onCall(opts, handler) | Declares a callable method for clients to call using a Firebase SDK. |
| onCall(handler) | Declares a callable method for clients to call using a Firebase SDK. |
| onCallGenkit(action) | |
| onCallGenkit(opts, flow) | |
| onRequest(opts, handler) | Handles HTTPS requests. |
| onRequest(handler) | Handles HTTPS requests. |
Classes
| Class | Description |
|---|---|
| HttpsError | An explicit error that can be thrown from a handler to send an error to the client that called the function. |
Interfaces
| Interface | Description |
|---|---|
| CallableFunction | Creates a callable method for clients to call using a Firebase SDK. |
| CallableOptions | Options that can be set on a callable HTTPS function. |
| CallableRequest | The request used to call a callable function. |
| CallableResponse | CallableProxyResponse allows streaming response chunks and listening to signals triggered in events such as a disconnect. |
| HttpsOptions | Options that can be set on an onRequest HTTPS function. |
| Request | An express request with the wire format representation of the request body. |
Type Aliases
| Type Alias | Description |
|---|---|
| FunctionsErrorCode | The set of Firebase Functions status codes. The codes are the same at the ones exposed bygRPC. |
| HttpsFunction | Handles HTTPS requests. |
https.hasClaim()
Warning: This API is now obsolete.An auth policy that requires a user to be both signed in and have a specific claim (optionally with a specific value)
Signature:
hasClaim:(claim:string,value?:string)=>(auth:AuthData|null)=>booleanParameters
| Parameter | Type | Description |
|---|---|---|
| claim | string | |
| value | string |
Returns:
(auth: AuthData | null) => boolean
https.isSignedIn()
Warning: This API is now obsolete.An auth policy that requires a user to be signed in.
Signature:
isSignedIn:()=>(auth:AuthData|null)=>booleanReturns:
(auth: AuthData | null) => boolean
https.onCall()
Declares a callable method for clients to call using a Firebase SDK.
Signature:
exportdeclarefunctiononCall<T=any,Return=any|Promise<any>,Stream=unknown>(opts:CallableOptions<T>,handler:(request:CallableRequest<T>,response?:CallableResponse<Stream>)=>Return):CallableFunction<T,ReturnextendsPromise<unknown>?Return:Promise<Return>,Stream>;Parameters
| Parameter | Type | Description |
|---|---|---|
| opts | CallableOptions<T> | Options to set on this function. |
| handler | (request:CallableRequest<T>, response?:CallableResponse<Stream>) => Return | A function that takes ahttps.CallableRequest. |
Returns:
CallableFunction<T, Return extends Promise<unknown> ? Return : Promise<Return>, Stream>
A function that you can export and deploy.
https.onCall()
Declares a callable method for clients to call using a Firebase SDK.
Signature:
exportdeclarefunctiononCall<T=any,Return=any|Promise<any>,Stream=unknown>(handler:(request:CallableRequest<T>,response?:CallableResponse<Stream>)=>Return):CallableFunction<T,ReturnextendsPromise<unknown>?Return:Promise<Return>>;Parameters
| Parameter | Type | Description |
|---|---|---|
| handler | (request:CallableRequest<T>, response?:CallableResponse<Stream>) => Return | A function that takes ahttps.CallableRequest. |
Returns:
CallableFunction<T, Return extends Promise<unknown> ? Return : Promise<Return>>
A function that you can export and deploy.
https.onCallGenkit()
Signature:
exportdeclarefunctiononCallGenkit<AextendsGenkitAction>(action:A):CallableFunction<ActionInput<A>,Promise<ActionOutput<A>>,ActionStream<A>>;Parameters
| Parameter | Type | Description |
|---|---|---|
| action | A |
Returns:
CallableFunction<ActionInput<A>, Promise<ActionOutput<A>>, ActionStream<A>>
https.onCallGenkit()
Signature:
exportdeclarefunctiononCallGenkit<AextendsGenkitAction>(opts:CallableOptions<ActionInput<A>>,flow:A):CallableFunction<ActionInput<A>,Promise<ActionOutput<A>>,ActionStream<A>>;Parameters
| Parameter | Type | Description |
|---|---|---|
| opts | CallableOptions<ActionInput<A>> | |
| flow | A |
Returns:
CallableFunction<ActionInput<A>, Promise<ActionOutput<A>>, ActionStream<A>>
https.onRequest()
Handles HTTPS requests.
Signature:
exportdeclarefunctiononRequest(opts:HttpsOptions,handler:(request:Request,response:express.Response)=>void|Promise<void>):HttpsFunction;Parameters
| Parameter | Type | Description |
|---|---|---|
| opts | HttpsOptions | Options to set on this function |
| handler | (request: Request, response: express.Response) => void | Promise<void> | A function that takes ahttps.Request and response object, same signature as an Express app. |
Returns:
A function that you can export and deploy.
https.onRequest()
Handles HTTPS requests.
Signature:
exportdeclarefunctiononRequest(handler:(request:Request,response:express.Response)=>void|Promise<void>):HttpsFunction;Parameters
| Parameter | Type | Description |
|---|---|---|
| handler | (request: Request, response: express.Response) => void | Promise<void> | A function that takes ahttps.Request and response object, same signature as an Express app. |
Returns:
A function that you can export and deploy.
https.FunctionsErrorCode
The set of Firebase Functions status codes. The codes are the same at the ones exposed bygRPC.
Possible values:
cancelled: The operation was cancelled (typically by the caller).unknown: Unknown error or an error from a different error domain.invalid-argument: Client specified an invalid argument. Note that this differs fromfailed-precondition.invalid-argumentindicates arguments that are problematic regardless of the state of the system (e.g. an invalid field name).deadline-exceeded: Deadline expired before operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire.not-found: Some requested document was not found.already-exists: Some document that we attempted to create already exists.permission-denied: The caller does not have permission to execute the specified operation.resource-exhausted: Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.failed-precondition: Operation was rejected because the system is not in a state required for the operation's execution.aborted: The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.out-of-range: Operation was attempted past the valid range.unimplemented: Operation is not implemented or not supported/enabled.internal: Internal errors. Means some invariants expected by underlying system has been broken. If you see one of these errors, something is very broken.unavailable: The service is currently unavailable. This is most likely a transient condition and may be corrected by retrying with a backoff.data-loss: Unrecoverable data loss or corruption.unauthenticated: The request does not have valid authentication credentials for the operation.
Signature:
exporttypeFunctionsErrorCode="ok"|"cancelled"|"unknown"|"invalid-argument"|"deadline-exceeded"|"not-found"|"already-exists"|"permission-denied"|"resource-exhausted"|"failed-precondition"|"aborted"|"out-of-range"|"unimplemented"|"internal"|"unavailable"|"data-loss"|"unauthenticated";https.HttpsFunction
Handles HTTPS requests.
Signature:
exporttypeHttpsFunction=((req:Request,res:express.Response)=>void|Promise<void>) &{__trigger?:unknown;__endpoint:ManifestEndpoint;};Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-11-10 UTC.