Created
July 24, 2020 09:39
-
-
Save shinriyo/fdd9285b7a002dc3697b9d29c6e28d4f to your computer and use it in GitHub Desktop.
Sync Document for update (AddSearch with Firestore, Functions, TypeScript)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { index, baseURL, siteKey, secretKey } from './index'; | |
import * as functions from 'firebase-functions' | |
export const userOnUpdateForAddSearch = functions.firestore | |
.document('users/{userId}') | |
.onUpdate(async (event, context) => { | |
const axios = require('axios'); | |
// const oldData = event.before.data(); | |
const newData = event.after.data(); | |
const documentId = event.after.id; | |
const args = { | |
withCredentials: true, | |
data: { ...newData }, | |
headers: { | |
"Content-Type": "application/json", | |
} | |
} | |
// PUT /v2/indices/{index public key}/documents/{document id} | |
axios.put(`${baseURL}/v2/indices/${siteKey}/documents/${documentId}`, args, { | |
// HTTP Basic Auth | |
auth: { | |
username: siteKey, | |
password: secretKey, | |
} | |
}) | |
.then((response: any) => { | |
console.log(response.data) | |
}) | |
.catch((error: any) => { | |
console.log(error) | |
}) | |
.then(function () { | |
console.log("*** finish ***") | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment