You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Continues the OAuth2 login flow after the login page
1767
1772
responses:
@@ -1797,7 +1802,7 @@ paths:
1797
1802
parameters:
1798
1803
- $ref: '#/components/parameters/apiBasePath'
1799
1804
description: |
1800
-
Starts the OAuth2 login flow
1805
+
Starts the OAuth2 login flow - for a detailed description of all input parameters please see the OAuth2 and OpenID Connect Core specs
1801
1806
responses:
1802
1807
'302':
1803
1808
description: Redirects the user to the login page or back to the client app
@@ -1831,7 +1836,7 @@ paths:
1831
1836
parameters:
1832
1837
- $ref: '#/components/parameters/apiBasePath'
1833
1838
description: |
1834
-
Exchanges an OAuth2 grant (e.g.: authorization code) for an access token (and optionally a refresh/id token)
1839
+
Exchanges an OAuth2 grant (e.g.: authorization code) for an access token (and optionally a refresh/id token) - for a detailed description of all input parameters please see the OAuth2 and OpenID Connect Core specs
1835
1840
responses:
1836
1841
'200':
1837
1842
description: Issued tokens
@@ -1847,27 +1852,27 @@ paths:
1847
1852
properties:
1848
1853
access_token:
1849
1854
type: string
1850
-
desciption: 'The access token issued by the authorization server.'
1855
+
description: 'The access token issued by the authorization server.'
1851
1856
1852
1857
expires_in:
1853
1858
type: number
1854
-
desciption: 'The lifetime in seconds of the access token (integer). For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated.'
1859
+
description: 'The lifetime in seconds of the access token (integer). For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated.'
1855
1860
1856
1861
id_token:
1857
1862
type: string
1858
-
desciption: 'To retrieve a refresh token request the id_token scope.'
1863
+
description: 'To retrieve a refresh token request the id_token scope.'
1859
1864
1860
1865
refresh_token:
1861
1866
type: string
1862
-
desciption: 'The refresh token, which can be used to obtain new access tokens. To retrieve it add the scope "offline" to your access token request.'
1867
+
description: 'The refresh token, which can be used to obtain new access tokens. To retrieve it add the scope "offline" to your access token request.'
Redirects the user to a page where they can log out and revoke the oauth tokens
2173
+
Redirects the user to a page where they can log out and revoke the oauth tokens - for a detailed description of input parameters please see the user initiated logout spec
2087
2174
responses:
2088
2175
'302':
2089
2176
description: Redirects the user to the logout page or back to the client app
0 commit comments