blob: dbd50265b6304357b019a7b2e36eddb3cc98b848 [file] [log] [blame]
package googleoauth
import (
"encoding/json"
"fmt"
"io"
)
// ClientIDAndSecretFromJSON parses JSON-encoded API access information in 'r'
// and returns the extracted ClientID and ClientSecret.
// This JSON-encoded data is typically available as a download from the Google
// API Access console for your application
// (https://code.google.com/apis/console).
func ClientIDAndSecretFromJSON(r io.Reader) (id, secret string, err error) {
var full, x map[string]interface{}
if err = json.NewDecoder(r).Decode(&full); err != nil {
return
}
var ok bool
typ := "web"
if x, ok = full[typ].(map[string]interface{}); !ok {
typ = "installed"
if x, ok = full[typ].(map[string]interface{}); !ok {
err = fmt.Errorf("web or installed configuration not found")
return
}
}
if id, ok = x["client_id"].(string); !ok {
err = fmt.Errorf("%s.client_id not found", typ)
return
}
if secret, ok = x["client_secret"].(string); !ok {
err = fmt.Errorf("%s.client_secret not found", typ)
return
}
return
}