Skip to main content

Adding Google+ Sign-In to a Web Site

I just added Google+ sign in to the Copasetic Flows ham radio license exam practice site[2].  Unlike friend connect from Google which ultimately disappeared, it was pretty easy!  I used the instructions at Google Plus Daily[1].  The instructions there outline in a very  nice and very complete way how to get sign-in up and working using only JavaScript.  They also demonstrate how to access user information using JavaScript.  The insructions worked very well for me with a few notable exceptions that I'm cataloging here before I forget:

1.  In step 2, adding a sign-in button, I had to add a span around the button html with an id of 'signinButton' to get the button to properly disappear upon login.

2.  The last line of the disconnect code had to be commented out since revokeButton didn't exist in my html.

3.  The profile information code didn't quite work for me.  It's not that it's necessarily bad code so much as it employed bits of Javascript that I'm not comfortable with yet, and therefore couldn't get to work.  I replaced it with code that looks like the following


function setup_gprofile(){
  var request = gapi.client.plus.people.get( {'userId' : 'me'} );
  request.execute(function(profile){
    $('gprofile').innerHTML = '';
    login_user = profile.id;
    login_name = profile.displayName; 
  });
  }

and called it from the library load code for the google plus api load


function signinCallback(authResult) {
   if (authResult['access_token']) {
     // Successfully authorized
     document.getElementById('signinButton').setAttribute('style', 'display: none');
        document.getElementById('fblogin').innerHTML = '';
     gapi.client.load('plus','v1', function(){ 
      // once we get this call back, gapi.client.plus.* will exist
      setup_gprofile();
      });
     

   } else if (authResult['error']) {
     // There was an error.
     // Possible error codes:
     //   "access_denied" - User denied access to your app
     //   "immediate_failed" - Could not automatially log in the user
     // console.log('There was an error: ' + authResult['error']);
   }
 }


After making these modifications, everything worked like a champ!

References:
1.  Google Plus Daily post on adding Google Plus sign-in via JavaScript:
http://www.googleplusdaily.com/2013/03/add-google-sign-in-in-6-easy-steps.html

2.  Copasetic Flows ham radio practice exams
http://copaseticflows.appspot.com/hamtest

Comments

Popular posts from this blog

More Cowbell! Record Production using Google Forms and Charts

First, the what : This article shows how to embed a new Google Form into any web page. To demonstrate ths, a chart and form that allow blog readers to control the recording levels of each instrument in Blue Oyster Cult's "(Don't Fear) The Reaper" is used. HTML code from the Google version of the form included on this page is shown and the parts that need to be modified are highlighted. Next, the why : Google recently released an e-mail form feature that allows users of Google Documents to create an e-mail a form that automatically places each user's input into an associated spreadsheet. As it turns out, with a little bit of work, the forms that are created by Google Docs can be embedded into any web page. Now, The Goods: Click on the instrument you want turned up, click the submit button and then refresh the page. Through the magic of Google Forms as soon as you click on submit and refresh this web page, the data chart will update immediately. Turn up the:

Cool Math Tricks: Deriving the Divergence, (Del or Nabla) into New (Cylindrical) Coordinate Systems

Now available as a Kindle ebook for 99 cents ! Get a spiffy ebook, and fund more physics The following is a pretty lengthy procedure, but converting the divergence, (nabla, del) operator between coordinate systems comes up pretty often. While there are tables for converting between common coordinate systems , there seem to be fewer explanations of the procedure for deriving the conversion, so here goes! What do we actually want? To convert the Cartesian nabla to the nabla for another coordinate system, say… cylindrical coordinates. What we’ll need: 1. The Cartesian Nabla: 2. A set of equations relating the Cartesian coordinates to cylindrical coordinates: 3. A set of equations relating the Cartesian basis vectors to the basis vectors of the new coordinate system: How to do it: Use the chain rule for differentiation to convert the derivatives with respect to the Cartesian variables to derivatives with respect to the cylindrical variables. The chain

The Valentine's Day Magnetic Monopole

There's an assymetry to the form of the two Maxwell's equations shown in picture 1.  While the divergence of the electric field is proportional to the electric charge density at a given point, the divergence of the magnetic field is equal to zero.  This is typically explained in the following way.  While we know that electrons, the fundamental electric charge carriers exist, evidence seems to indicate that magnetic monopoles, the particles that would carry magnetic 'charge', either don't exist, or, the energies required to create them are so high that they are exceedingly rare.  That doesn't stop us from looking for them though! Keeping with the theme of Fairbank[1] and his academic progeny over the semester break, today's post is about the discovery of a magnetic monopole candidate event by one of the Fairbank's graduate students, Blas Cabrera[2].  Cabrera was utilizing a loop type of magnetic monopole detector.  Its operation is in concept very sim