How can an image upload to Google Firebase be used as a trigger for executing a Google Cloud Function?Images not uploading to the Firebase Storage while implementing FireChat in iOS?Google Cloud Function triggered by play store private bucketPermission denied in firebase cloud functionsCleanup Temp Directory Firebase cloud FunctionsHow to upload Firestore Cloud Functions from the Console?firebase functions deployment error: Insufficient permissions to (re)configure a triggerHow to get the uid of the authenticated Firebase user in a Cloud Functions storage triggercan't upload image to cloudinary from firebase cloud functionTrying to upload to firebase storage through a cloud function

Why is Google approaching my VPS machine?

Will the internet speed decrease on second router if there are multiple devices connected to primary router?

Why does a tetrahedral molecule like methane have a dipole moment of zero?

What is the name for the average of the largest and the smallest values in a given data set?

Could a US citizen born through "birth tourism" become President?

What makes MOVEQ quicker than a normal MOVE in 68000 assembly?

I have found a mistake on someone's code published online: what is the protocol?

We get more abuse than anyone else

How did Jayne know when to shoot?

In this iconic lunar orbit rendezvous photo of John Houbolt, why do arrows #5 and #6 point the "wrong" way?

Operation Unzalgo

Does Holy Water deal damage on a failed attack roll?

Do Australia and New Zealand have a travel ban on Somalis (like Wikipedia says)?

How to not confuse readers with simultaneous events?

What is this green alien supposed to be on the American covers of the "Hitchhiker's Guide to the Galaxy"?

How important are the Author's mood and feelings for writing a story?

Null expletive objects in Latin? "Cariotae cum ficis certandum habent" (Plin. Ep. 1,8)

Difference between class and struct in with regards to padding and inheritance

Are there any satellites in geosynchronous but not geostationary orbits?

Why teach C using scanf without talking about command line arguments?

Why do space operations use "nominal" to mean "working correctly"?

How did J. J. Thomson establish the particle nature of the electron?

Why did my "seldom" get corrected?

What is actually sent/loaded to a microcontroller / stm32



How can an image upload to Google Firebase be used as a trigger for executing a Google Cloud Function?


Images not uploading to the Firebase Storage while implementing FireChat in iOS?Google Cloud Function triggered by play store private bucketPermission denied in firebase cloud functionsCleanup Temp Directory Firebase cloud FunctionsHow to upload Firestore Cloud Functions from the Console?firebase functions deployment error: Insufficient permissions to (re)configure a triggerHow to get the uid of the authenticated Firebase user in a Cloud Functions storage triggercan't upload image to cloudinary from firebase cloud functionTrying to upload to firebase storage through a cloud function






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am using Google Firebase as my database for storing user images, I want the image upload on Firebase to trigger my python code in Google Cloud Functions which processes the uploaded image



I have tried two trigger solutions so far:



  1. 'Google Cloud Storage' trigger using my Firebase bucket as the trigger, this returns the following error - "Insufficient permissions to (re)configure a trigger (permission denied for bucket xxxxx.appspot.com). Please, give owner permissions to the editor role of the bucket and try again"


  2. I then attempted the "Firebase Realtime Database" trigger which seemed a more viable option, but got the following error - "Failed to configure Firebase Realtime Database trigger: unknown error, HTTP code 401"


Please note, that my Firebase project is not the same as my project on Google Cloud Platform










share|improve this question
























  • You can't write functions that trigger on events in different projects.

    – Doug Stevenson
    Mar 26 at 15:49











  • @DougStevenson this restriction should IMHO be clearly documented.

    – Dan Cornilescu
    Mar 27 at 2:18











  • @DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

    – Panther25
    Mar 28 at 11:01

















0















I am using Google Firebase as my database for storing user images, I want the image upload on Firebase to trigger my python code in Google Cloud Functions which processes the uploaded image



I have tried two trigger solutions so far:



  1. 'Google Cloud Storage' trigger using my Firebase bucket as the trigger, this returns the following error - "Insufficient permissions to (re)configure a trigger (permission denied for bucket xxxxx.appspot.com). Please, give owner permissions to the editor role of the bucket and try again"


  2. I then attempted the "Firebase Realtime Database" trigger which seemed a more viable option, but got the following error - "Failed to configure Firebase Realtime Database trigger: unknown error, HTTP code 401"


Please note, that my Firebase project is not the same as my project on Google Cloud Platform










share|improve this question
























  • You can't write functions that trigger on events in different projects.

    – Doug Stevenson
    Mar 26 at 15:49











  • @DougStevenson this restriction should IMHO be clearly documented.

    – Dan Cornilescu
    Mar 27 at 2:18











  • @DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

    – Panther25
    Mar 28 at 11:01













0












0








0








I am using Google Firebase as my database for storing user images, I want the image upload on Firebase to trigger my python code in Google Cloud Functions which processes the uploaded image



I have tried two trigger solutions so far:



  1. 'Google Cloud Storage' trigger using my Firebase bucket as the trigger, this returns the following error - "Insufficient permissions to (re)configure a trigger (permission denied for bucket xxxxx.appspot.com). Please, give owner permissions to the editor role of the bucket and try again"


  2. I then attempted the "Firebase Realtime Database" trigger which seemed a more viable option, but got the following error - "Failed to configure Firebase Realtime Database trigger: unknown error, HTTP code 401"


Please note, that my Firebase project is not the same as my project on Google Cloud Platform










share|improve this question
















I am using Google Firebase as my database for storing user images, I want the image upload on Firebase to trigger my python code in Google Cloud Functions which processes the uploaded image



I have tried two trigger solutions so far:



  1. 'Google Cloud Storage' trigger using my Firebase bucket as the trigger, this returns the following error - "Insufficient permissions to (re)configure a trigger (permission denied for bucket xxxxx.appspot.com). Please, give owner permissions to the editor role of the bucket and try again"


  2. I then attempted the "Firebase Realtime Database" trigger which seemed a more viable option, but got the following error - "Failed to configure Firebase Realtime Database trigger: unknown error, HTTP code 401"


Please note, that my Firebase project is not the same as my project on Google Cloud Platform







firebase firebase-realtime-database google-cloud-functions firebase-storage






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 13:24









Frank van Puffelen

265k33 gold badges427 silver badges452 bronze badges




265k33 gold badges427 silver badges452 bronze badges










asked Mar 26 at 10:48









Panther25Panther25

1




1












  • You can't write functions that trigger on events in different projects.

    – Doug Stevenson
    Mar 26 at 15:49











  • @DougStevenson this restriction should IMHO be clearly documented.

    – Dan Cornilescu
    Mar 27 at 2:18











  • @DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

    – Panther25
    Mar 28 at 11:01

















  • You can't write functions that trigger on events in different projects.

    – Doug Stevenson
    Mar 26 at 15:49











  • @DougStevenson this restriction should IMHO be clearly documented.

    – Dan Cornilescu
    Mar 27 at 2:18











  • @DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

    – Panther25
    Mar 28 at 11:01
















You can't write functions that trigger on events in different projects.

– Doug Stevenson
Mar 26 at 15:49





You can't write functions that trigger on events in different projects.

– Doug Stevenson
Mar 26 at 15:49













@DougStevenson this restriction should IMHO be clearly documented.

– Dan Cornilescu
Mar 27 at 2:18





@DougStevenson this restriction should IMHO be clearly documented.

– Dan Cornilescu
Mar 27 at 2:18













@DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

– Panther25
Mar 28 at 11:01





@DougStevenson, in that case, is there an easy/efficient way to integrate my two projects into one on Google Cloud Platform (GCP), potentially using the Firebase 'Blaze' plan which allows the project to be extended to GCP

– Panther25
Mar 28 at 11:01












0






active

oldest

votes










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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55355296%2fhow-can-an-image-upload-to-google-firebase-be-used-as-a-trigger-for-executing-a%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55355296%2fhow-can-an-image-upload-to-google-firebase-be-used-as-a-trigger-for-executing-a%23new-answer', 'question_page');

);

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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript