From f15a3dff098e1bd1581402fa76e6faaea72a5920 Mon Sep 17 00:00:00 2001 From: Naman Aggarwal Date: Fri, 3 Jul 2020 02:55:51 +0800 Subject: [PATCH] Added Splitwise endpoints --- endpoints/endpoints.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/endpoints/endpoints.go b/endpoints/endpoints.go index 811e101f9..480b208f0 100644 --- a/endpoints/endpoints.go +++ b/endpoints/endpoints.go @@ -155,6 +155,12 @@ var Slack = oauth2.Endpoint{ TokenURL: "https://slack.com/api/oauth.access", } +// Splitwise is the endpoint for Splitwise. +var Splitwise = oauth2.Endpoint{ + AuthURL: "https://www.splitwise.com/oauth/authorize", + TokenURL: "https://www.splitwise.com/oauth/token", +} + // Spotify is the endpoint for Spotify. var Spotify = oauth2.Endpoint{ AuthURL: "https://accounts.spotify.com/authorize",