본문 바로가기
728x90

개발/Firebase46

firebase function으로 puppeteer 사용하기 firebase function을 사용하면서 크롤링을 사용해야하는 경우가 종종 있다. 그런데 문제는 이 친구가.. memory limit exceed 로 작동을 하지 않는다는 것이었다. 그러나 나의 구세주 파베방장님은 답을 알려주셨다. firebase function memory를 늘려주면 되는 것이었다. 찾아보니 firebase doc 안에 그 기능이 있었다! 나는 바로 적용해주었다. https://firebase.google.com/docs/functions/manage-functions?hl=ko#set_timeout_and_memory_allocation 함수 관리 | Firebase용 Cloud Functions 의견 보내기 함수 관리 Firebase CLI 명령어를 사용하거나 함수 소스 코드에.. 2022. 8. 22.
Firebase fcm에 큰 icon, image url 넣기 안되어서 골탕 좀 먹다가 발견함! https://tutorialmeta.com/question/messaging-payload-contains-an-invalid-android-property-valid-properties-are Messaging Payload Contains An Invalid "android" Property. Valid Properties Are "data" And "notification" I'm trying to send push notifications with firebase cloud functions with platform specific configuration. i got following config from ... tutorialmeta.com 2022. 7. 18.
firebase 보안세팅 rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /Places/{docId} { allow read, write; } match /{document=**} { allow read; allow write: if request.auth.uid != null; } } } 어떤사람이 해낸 예시임, 나는 moim collection에 대해서만, https://stackoverflow.com/questions/69662434/firestore-allow-read-if-collection-name-matches Firestore allow read if collection name matches I'.. 2022. 6. 24.
firebase function oncall과 on request 차이점 https://stackoverflow.com/questions/51066434/firebase-cloud-functions-difference-between-onrequest-and-oncall Firebase Cloud Functions: Difference between onRequest and onCall Going through the docs, I encountered: ...you can call functions directly with an HTTP request or a call from the client. ~ source there (link in the quote) is a mention about functions.ht... stackoverflow.com 2022. 6. 22.
728x90