Help Needed in Acquiring Authorisation From The Google API

quest2chill

Member
Joined
Mar 3, 2012
Messages
6
Programming Experience
Beginner
I am writing an application which will run on the windows desktop and will make various use of internet connections.

My main problem at present is acquiring authorisation from the Google API.
This apparently has to be achieved via several steps in order to acquire access to a users information.

My code (below), requests authorisation, and as I am not using a webbrowser the authorisation response has to be returned via a localhost port.
(This is Google's preferred method apparently)

My request seems to be accepted as the server is not rejecting it, however I now need to understand how to listen out on the localhost port so that I may receive the authorisation request response.

redirect_uri=http://localhost/8080/

Could anyone please advise me on how this may be achieved?

Code follows:
vb.net Code:


  1. Imports System.Net
  2. Imports System.Text
  3. Imports System.IO
  4. Public Class Form1
  5. Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
  6. Dim request As WebRequest
  7. ' Request authorisation from Google API
  8. request = DirectCast(WebRequest.Create("https://accounts.google.com/o/oauth2/auth?response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile&redirect_uri=http://localhost/8080/&client_id=nnnnnnnnnnn.apps.googleusercontent.com"), HttpWebRequest)
  9. Dim response As HttpWebResponse = DirectCast(request.GetResponse, HttpWebResponse)
  10. Dim stream As New StreamReader(response.GetResponseStream)
  11. Dim shorturl As String = stream.ReadToEnd
  12. shorturl = stream.ReadToEnd
  13. MessageBox.Show(shorturl)
  14. End Sub
  15. End Class



Regards
Quest2chill
 
Back
Top