> ## Documentation Index
> Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Handle OAuth1 callback

> Handles the OAuth1 callback by validating the oauth_token and oauth_verifier query parameters returned by the provider to complete the authorization flow. Typically responds with a redirect once the callback is processed.



## OpenAPI

````yaml /schema.json get /oauth1/callback
openapi: 3.1.0
info:
  version: 01KV4EC0SHV95TK2YR66AMKFZC
  title: Alumio API
  description: Access Alumio through OpenAPI v3.1.
servers:
  - url: /api/v1
security: []
paths:
  /oauth1/callback:
    get:
      tags:
        - Oauth
      summary: Handle OAuth1 callback
      description: >-
        Handles the OAuth1 callback by validating the oauth_token and
        oauth_verifier query parameters returned by the provider to complete the
        authorization flow. Typically responds with a redirect once the callback
        is processed.
      operationId: oauth1Callback
      parameters:
        - name: oauth_token
          in: query
          description: OAuth token
          schema:
            type: string
        - name: oauth_verifier
          in: query
          description: OAuth verifier
          schema:
            type: string
        - name: space
          in: query
          description: Space Identifier
          required: false
          schema:
            type: string
      responses:
        2XX:
          description: OK
        3XX:
          description: Redirect
        4XX:
          description: Client Error
        5XX:
          description: Server Error

````