TypeScript typings for Firebase Hosting API v1beta1
The Firebase Hosting REST API enables programmatic and customizable management and deployments to your Firebase-hosted sites. Use this REST API to create and manage channels and sites as well as to deploy new or updated hosting configurations and content files.
For detailed description please check documentation.
Installing
Install typings for Firebase Hosting API:
npm install @types/gapi.client.firebasehosting-v1beta1 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load(
'https://firebasehosting.googleapis.com/$discovery/rest?version=v1beta1',
() => {
}
);
gapi.client.load('firebasehosting', 'v1beta1', () => {
});
Don't forget to authenticate your client before sending any request to resources:
var client_id = '',
scope = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/cloud-platform.read-only',
'https://www.googleapis.com/auth/firebase',
'https://www.googleapis.com/auth/firebase.readonly',
],
immediate = true;
gapi.auth.authorize(
{client_id: client_id, scope: scope, immediate: immediate},
authResult => {
if (authResult && !authResult.error) {
} else {
}
}
);
After that you can use Firebase Hosting API resources:
await gapi.client.firebasehosting.sites.getConfig({name: 'name'});
await gapi.client.firebasehosting.sites.updateConfig({name: 'name'});