Posts

My Androidproject can't connect to the Firebase dependancy

Image
up vote 0 down vote favorite Do anyone know how to get in touch with Firebase team? Because I've read all the other post on this topic and I'm still having this problem.... [Failed to resolve: firebase-database-15.0.0] I've updated and upgrading everything I could to no avail. android firebase firebase-realtime-database firebase-authentication share | improve this question asked Nov 21 at 19:39 divsyntax 1 2 ...

Flaskdance doesn't generate a HTTPS uri

Image
up vote 0 down vote favorite I'm trying to set up Google sign-in using Flask dance for a flask based website: from flask_dance.contrib.google import make_google_blueprint, google blueprint = make_google_blueprint( client_id= "CLIENT_ID", client_secret="CLIENT_SECRET", scope=[ "https://www.googleapis.com/auth/plus.me", "https://www.googleapis.com/auth/userinfo.email", ] ) app.register_blueprint(blueprint, url_prefix="/google_login") And as the documentation suggests, I have the view set up like this: @app.route('/google_login') def google_login(): if not google.authorized: return redirect(url_for("google.login")) resp = google.get("/oauth2/v2/userinfo") assert resp.ok, resp.text return "You are {email} on Google...