cURL
curl --request GET \
--url https://external.vin.gs/api/oauth/authorizeconst options = {method: 'GET'};
fetch('https://external.vin.gs/api/oauth/authorize', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://external.vin.gs/api/oauth/authorize"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external.vin.gs/api/oauth/authorize"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}OAuth
Get oauthauthorize
GET
/
oauth
/
authorize
cURL
curl --request GET \
--url https://external.vin.gs/api/oauth/authorizeconst options = {method: 'GET'};
fetch('https://external.vin.gs/api/oauth/authorize', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://external.vin.gs/api/oauth/authorize"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external.vin.gs/api/oauth/authorize"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Response
302
Redirects to Supabase authorize after stripping unsupported scopes such as offline_access
⌘I