File: latitude.go

package info (click to toggle)
golang-github-mrjones-oauth 0.0~git20170225.0.3f67d9c-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: sh: 17; makefile: 5
file content (74 lines) | stat: -rw-r--r-- 1,913 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// THIS NO LONGER WORKS!!
// Latitude is using OAuth 2.0 now.
package main

import (
	"flag"
	"fmt"
	"github.com/mrjones/oauth"
	"io/ioutil"
	"log"
)

const (
	CURRENT_LOCATION_URL = "https://www.googleapis.com/latitude/v1/currentLocation"
)

func Usage() {
	fmt.Println("Usage:")
	fmt.Print("go run examples/latitude/latitude.go")
	fmt.Print("  --consumerkey <consumerkey>")
	fmt.Print("  --consumersecret <consumersecret>")
	fmt.Println("  --apikey <apikey>")
	fmt.Println("")
}

func main() {
	var consumerKey *string = flag.String("consumerkey", "", "")
	var consumerSecret *string = flag.String("consumersecret", "", "")
	var apiKey *string = flag.String("apikey", "", "")
	flag.Parse()

	c := oauth.NewConsumer(
		*consumerKey,
		*consumerSecret,
		oauth.ServiceProvider{
			RequestTokenUrl:   "https://www.google.com/accounts/OAuthGetRequestToken",
			AuthorizeTokenUrl: "https://www.google.com/latitude/apps/OAuthAuthorizeToken",
			AccessTokenUrl:    "https://www.google.com/accounts/OAuthGetAccessToken",
		})

	c.AdditionalParams["scope"] = "https://www.googleapis.com/auth/latitude"
	requestToken, url, err := c.GetRequestTokenAndUrl("oob")
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("(1) Go to: " + url + "&domain=mrjon.es&granularity=best&location=all")
	fmt.Println("(2) Grant access, you should get back a verification code.")
	fmt.Println("(3) Enter that verification code here: ")

	verificationCode := ""
	fmt.Scanln(&verificationCode)

	accessToken, err := c.AuthorizeToken(requestToken, verificationCode)
	if err != nil {
		log.Fatal(err)
	}

	client, err := c.MakeHttpClient(accessToken)
	if err != nil {
		log.Fatal(err)
	}

	response, err := client.Get(
		fmt.Sprintf("%s?key=%s", CURRENT_LOCATION_URL, *apiKey))
	if err != nil {
		log.Fatal(err)
	}

	defer response.Body.Close()

	bits, err := ioutil.ReadAll(response.Body)
	fmt.Println("Your latest location: " + string(bits))
}