Has anyone had success with the handshaking of JWT...
# cfml-general
p
Has anyone had success with the handshaking of JWT's with Google Firebase Cloud? I'm trying to send push notifications to a mobile app and the negotiation between CF and Google is proving to be troublesome.
d
I have coldbox module for Firebase Cloud Message: https://github.com/davidsf/cbfirebasecm It use the google java libs for the athentication.
p
Amazing. Thanks!
Hey @davidsf I'm using the guts of your Coldbox module (since the app I'm working in isn't ColdBox) to give this a go, but I'm getting a "com/google/api/client/http/HttpTransport null" error on the
googleCredentials.fromStream(fileInput).createScoped( [ "<https://www.googleapis.com/auth/firebase.messaging>" ] );
line. Have you encountered this before, or can you point me in the right direction?
d
ouch, it seems that it's needed another jar: google-http-client. I have added to the github repo.
👍 1