File tree 4 files changed +7
-7
lines changed
appengine/standard/firebase/firenotes
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ handlers:
10
10
env_variables :
11
11
# Replace with your Firebase project ID.
12
12
FIREBASE_PROJECT_ID : ' <PROJECT_ID>'
13
+ GAE_USE_SOCKETS_HTTPLIB : ' true'
Original file line number Diff line number Diff line change 1
- Flask == 1.0.2
1
+ Flask == 0.12.4
2
2
pyjwt == 1.6.4
3
3
flask-cors == 3.0.7
4
4
google-auth == 1.6.1
Original file line number Diff line number Diff line change 7
7
< html >
8
8
< head >
9
9
< script src ="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js "> </ script >
10
- < script src ="https://www.gstatic.com/firebasejs/3.2.1/firebase.js "> </ script >
11
- < script src ="https://www.gstatic.com/firebasejs/3.1.0/firebase-app.js "> </ script >
12
- < script src ="https://www.gstatic.com/firebasejs/3.1.0/firebase-auth.js "> </ script >
13
- < script src ="https://www.gstatic.com/firebasejs/ui/live/1.0/firebase-ui-auth.js "> </ script >
14
- < link type ="text/css " rel ="stylesheet " href ="https://www.gstatic.com/firebasejs/ui/live/1.0/firebase-ui-auth.css ">
10
+ < script src ="https://www.gstatic.com/firebasejs/5.6.0/firebase-app.js "> </ script >
11
+ < script src ="https://www.gstatic.com/firebasejs/5.6.0/firebase-auth.js "> </ script >
12
+ < script src ="https://cdn.firebase.com/libs/firebaseui/3.4.1/firebaseui.js "> </ script >
13
+ < link type ="text/css " rel ="stylesheet " href ="https://cdn.firebase.com/libs/firebaseui/3.4.1/firebaseui.css ">
15
14
< link rel ="stylesheet " type ="text/css " href ="style.css ">
16
15
< script src ="/main.js "> </ script >
17
16
< title > Firenotes</ title >
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ $(function(){
50
50
personal welcome message. Otherwise, use the user's email. */
51
51
var welcomeName = name ? name : user . email ;
52
52
53
- user . getToken ( ) . then ( function ( idToken ) {
53
+ user . getIdToken ( ) . then ( function ( idToken ) {
54
54
userIdToken = idToken ;
55
55
56
56
/* Now that the user is authenicated, fetch the notes. */
You can’t perform that action at this time.
0 commit comments