Oauth2

API Security in Apigee: Introduction to OAuth 2.0

Reading Time: 3 minutes In today’s world of web APIs How you can control access to your APIs from malicious attacks? How you can build a trustworthy system?

Integrating Google Drive in Play Scala application with Google+ API

Reading Time: < 1 minute In our earlier blog, i.e., Integrating Google Drive infrastructure in Play Scala application we talked about integrating the Google Drive infrastructure in Play Scala application as like Assembla and some others. In that blog we used OAuth2 in order to communicate with the Google using Access Token and Refresh Token. For getting the Access Token & Refresh Token we used following Scopes of Google API: “https://www.googleapis.com/auth/userinfo.email&#8221; “https://www.googleapis.com/auth/userinfo.profile&#8221; But Continue Reading

Create, Upload & Delete Google Docs using Play Scala application

Reading Time: 2 minutes This blog talks about creating, uploading & deleting Google Docs using a Play Scala application. We have used oauth2 in order to communicate with the Google Drive to perform various Google Doc operations. Let us see the process step by step. 1.First integrate Google Drive infrastructure in your Play Scala Application. You can read about it from here to know how to do it. 2. Then in order to Continue Reading

Integrating Google Drive infrastructure in Play Scala application

Reading Time: 3 minutes This blog talks about integrating the Google Drive infrastructure in Play Scala application as like Assembla and some others. We used oauth2 in order to communicate with the Google using Access Token and Refresh Token. Let us see the process step by step. 1. Prepare the browser request URL in order to get the authorization code. val redirectURI = "http://localhost:9000/driveAuth&quot; def authenticateToGoogle = Action { Continue Reading