Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AppEngine Java Google+ Signin missing gplus_id

I'm trying to sign-in to G+ with java on Google AppEngine as explained here

In Step 8, the code gets gPlusId as follow

 String gPlusId = request.queryParams("gplus_id");

and this request should be coming from the ajax call in Step 6, which only sends authResult['code'] in the request, even the authResult doesn't have a parameter gplus_id

how then and where from this gplus_id comes ?!

like image 444
Ahmed Waheed Avatar asked Nov 20 '13 17:11

Ahmed Waheed


1 Answers

Is your request getting authorized? If yest then have you checked that you turned on Google+ API for your GAE application from the below link.

https://console.developers.google.com/project/693420044823/apiui/api/plus

like image 98
Jaynil Avatar answered Sep 18 '22 16:09

Jaynil