VATSIM OAuth callback
curl --request GET \
--url https://v2.stopbars.com/auth/vatsim/callbackimport requests
url = "https://v2.stopbars.com/auth/vatsim/callback"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/auth/vatsim/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Auth
VATSIM OAuth callback
Exchanges authorization code for a VATSIM token and redirects to frontend with token.
GET
/
auth
/
vatsim
/
callback
VATSIM OAuth callback
curl --request GET \
--url https://v2.stopbars.com/auth/vatsim/callbackimport requests
url = "https://v2.stopbars.com/auth/vatsim/callback"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/auth/vatsim/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Query Parameters
Response
Redirect to application with token or error
Was this page helpful?
