Firebase Functions - ReferenceError: event is not defined
I'm trying to do a simple notification function
but every time i fire the function i get ERROR
TypeError: Cannot read property 'params' of undefined
at exports.sendNotification.functions.database.ref.onWrite (/user_code/index.js:23:32)
at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:105:23)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:135:20)
at /var/tmp/worker/worker.js:758:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
Or i get the error
TypeError: Cannot read property 'user_id' of undefined
I got an answer from here
but i't didn't help at all , and i can't find the problem . this is my code
'use strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.sendNotification = functions.database.ref('/notifications/{user_id}/{notification_id}').onWrite((change,context) => {
const user_id = event.params.user_id;
const notification_id = event.params.notification_id;
console.log('We have a notification from : ', user_id);
if(!context.data.val()){
return console.log('A Notification has been deleted from the database : ',
notification_id);
}
const fromUser =admin.database().ref(`/notifications/${user_id}/${notification_id}`).once('value');
return fromUser.then(fromUserResult => {
const from_user_id = fromUserResult.val().from;
console.log('You have new notification from : ', from_user_id);
const userQuery = admin.database().ref(`Users/${from_user_id}/name`).once('value');
const deviceToken = admin.database().ref(`/Users/${user_id}/device_token`).once('value');
return Promise.all([userQuery, deviceToken]).then(result => {
const userName = result[0].val();
const token_id = result[1].val();
const payload = {
notification: {
title : "New Friend Request",
body: `${userName} has sent you request`,
icon: "default",
click_action : "none"
},
data : {
from_user_id : from_user_id
}
};
return admin.messaging().sendToDevice(token_id, payload).then(response => {
return console.log('This was the notification Feature');
});
});
});
});
android node.js firebase firebase-realtime-database google-cloud-functions
add a comment |
I'm trying to do a simple notification function
but every time i fire the function i get ERROR
TypeError: Cannot read property 'params' of undefined
at exports.sendNotification.functions.database.ref.onWrite (/user_code/index.js:23:32)
at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:105:23)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:135:20)
at /var/tmp/worker/worker.js:758:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
Or i get the error
TypeError: Cannot read property 'user_id' of undefined
I got an answer from here
but i't didn't help at all , and i can't find the problem . this is my code
'use strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.sendNotification = functions.database.ref('/notifications/{user_id}/{notification_id}').onWrite((change,context) => {
const user_id = event.params.user_id;
const notification_id = event.params.notification_id;
console.log('We have a notification from : ', user_id);
if(!context.data.val()){
return console.log('A Notification has been deleted from the database : ',
notification_id);
}
const fromUser =admin.database().ref(`/notifications/${user_id}/${notification_id}`).once('value');
return fromUser.then(fromUserResult => {
const from_user_id = fromUserResult.val().from;
console.log('You have new notification from : ', from_user_id);
const userQuery = admin.database().ref(`Users/${from_user_id}/name`).once('value');
const deviceToken = admin.database().ref(`/Users/${user_id}/device_token`).once('value');
return Promise.all([userQuery, deviceToken]).then(result => {
const userName = result[0].val();
const token_id = result[1].val();
const payload = {
notification: {
title : "New Friend Request",
body: `${userName} has sent you request`,
icon: "default",
click_action : "none"
},
data : {
from_user_id : from_user_id
}
};
return admin.messaging().sendToDevice(token_id, payload).then(response => {
return console.log('This was the notification Feature');
});
});
});
});
android node.js firebase firebase-realtime-database google-cloud-functions
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39
add a comment |
I'm trying to do a simple notification function
but every time i fire the function i get ERROR
TypeError: Cannot read property 'params' of undefined
at exports.sendNotification.functions.database.ref.onWrite (/user_code/index.js:23:32)
at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:105:23)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:135:20)
at /var/tmp/worker/worker.js:758:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
Or i get the error
TypeError: Cannot read property 'user_id' of undefined
I got an answer from here
but i't didn't help at all , and i can't find the problem . this is my code
'use strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.sendNotification = functions.database.ref('/notifications/{user_id}/{notification_id}').onWrite((change,context) => {
const user_id = event.params.user_id;
const notification_id = event.params.notification_id;
console.log('We have a notification from : ', user_id);
if(!context.data.val()){
return console.log('A Notification has been deleted from the database : ',
notification_id);
}
const fromUser =admin.database().ref(`/notifications/${user_id}/${notification_id}`).once('value');
return fromUser.then(fromUserResult => {
const from_user_id = fromUserResult.val().from;
console.log('You have new notification from : ', from_user_id);
const userQuery = admin.database().ref(`Users/${from_user_id}/name`).once('value');
const deviceToken = admin.database().ref(`/Users/${user_id}/device_token`).once('value');
return Promise.all([userQuery, deviceToken]).then(result => {
const userName = result[0].val();
const token_id = result[1].val();
const payload = {
notification: {
title : "New Friend Request",
body: `${userName} has sent you request`,
icon: "default",
click_action : "none"
},
data : {
from_user_id : from_user_id
}
};
return admin.messaging().sendToDevice(token_id, payload).then(response => {
return console.log('This was the notification Feature');
});
});
});
});
android node.js firebase firebase-realtime-database google-cloud-functions
I'm trying to do a simple notification function
but every time i fire the function i get ERROR
TypeError: Cannot read property 'params' of undefined
at exports.sendNotification.functions.database.ref.onWrite (/user_code/index.js:23:32)
at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:105:23)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:135:20)
at /var/tmp/worker/worker.js:758:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
Or i get the error
TypeError: Cannot read property 'user_id' of undefined
I got an answer from here
but i't didn't help at all , and i can't find the problem . this is my code
'use strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.sendNotification = functions.database.ref('/notifications/{user_id}/{notification_id}').onWrite((change,context) => {
const user_id = event.params.user_id;
const notification_id = event.params.notification_id;
console.log('We have a notification from : ', user_id);
if(!context.data.val()){
return console.log('A Notification has been deleted from the database : ',
notification_id);
}
const fromUser =admin.database().ref(`/notifications/${user_id}/${notification_id}`).once('value');
return fromUser.then(fromUserResult => {
const from_user_id = fromUserResult.val().from;
console.log('You have new notification from : ', from_user_id);
const userQuery = admin.database().ref(`Users/${from_user_id}/name`).once('value');
const deviceToken = admin.database().ref(`/Users/${user_id}/device_token`).once('value');
return Promise.all([userQuery, deviceToken]).then(result => {
const userName = result[0].val();
const token_id = result[1].val();
const payload = {
notification: {
title : "New Friend Request",
body: `${userName} has sent you request`,
icon: "default",
click_action : "none"
},
data : {
from_user_id : from_user_id
}
};
return admin.messaging().sendToDevice(token_id, payload).then(response => {
return console.log('This was the notification Feature');
});
});
});
});
android node.js firebase firebase-realtime-database google-cloud-functions
android node.js firebase firebase-realtime-database google-cloud-functions
edited Nov 24 '18 at 15:01
Frank van Puffelen
238k29382408
238k29382408
asked Nov 24 '18 at 11:25
Waseem HaWaseem Ha
318
318
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39
add a comment |
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39
add a comment |
1 Answer
1
active
oldest
votes
You never defined event
, so it's undefined. You're trying to access a property on an undefined variable. Did you mean context.params.user_id
?
(You're probably using an out of date tutorial. I see bad "sendNotification" functions like this all the time on Stack Overflow. Let the author know.)
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you usecontext
instead.
– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457639%2ffirebase-functions-referenceerror-event-is-not-defined%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You never defined event
, so it's undefined. You're trying to access a property on an undefined variable. Did you mean context.params.user_id
?
(You're probably using an out of date tutorial. I see bad "sendNotification" functions like this all the time on Stack Overflow. Let the author know.)
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you usecontext
instead.
– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
|
show 1 more comment
You never defined event
, so it's undefined. You're trying to access a property on an undefined variable. Did you mean context.params.user_id
?
(You're probably using an out of date tutorial. I see bad "sendNotification" functions like this all the time on Stack Overflow. Let the author know.)
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you usecontext
instead.
– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
|
show 1 more comment
You never defined event
, so it's undefined. You're trying to access a property on an undefined variable. Did you mean context.params.user_id
?
(You're probably using an out of date tutorial. I see bad "sendNotification" functions like this all the time on Stack Overflow. Let the author know.)
You never defined event
, so it's undefined. You're trying to access a property on an undefined variable. Did you mean context.params.user_id
?
(You're probably using an out of date tutorial. I see bad "sendNotification" functions like this all the time on Stack Overflow. Let the author know.)
answered Nov 24 '18 at 12:32
Doug StevensonDoug Stevenson
78.4k992111
78.4k992111
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you usecontext
instead.
– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
|
show 1 more comment
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you usecontext
instead.
– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
where should i defined it , i read about the event , it can't be used now
– Waseem Ha
Nov 24 '18 at 12:35
That's why I suggested you use
context
instead.– Doug Stevenson
Nov 24 '18 at 12:40
That's why I suggested you use
context
instead.– Doug Stevenson
Nov 24 '18 at 12:40
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
how should i use it , can you write a code of how to use it ?
– Waseem Ha
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
I gave you the code in my answer.
– Doug Stevenson
Nov 24 '18 at 12:41
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
how to fix my code , if i'm not using event at all
– Waseem Ha
Nov 24 '18 at 12:44
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457639%2ffirebase-functions-referenceerror-event-is-not-defined%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
stackoverflow.com/questions/49746905/…
– Peter Haddad
Nov 24 '18 at 13:38
stackoverflow.com/questions/49647170/…
– Peter Haddad
Nov 24 '18 at 13:39