Ticktick

TICKTICK_OAUTH2_AUTHORIZATION_STEP_1

Tool to redirect user to TickTick authorization page to obtain authorization code. Use when initiating the OAuth2 flow before exchanging the code.

Remote ticktick

Other tools also called TICKTICK_OAUTH2_AUTHORIZATION_STEP_1? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "scope": {
      "type": "string",
      "title": "Scope",
      "examples": [
        "tasks:read tasks:write"
      ],
      "description": "Space-separated permission scopes. Available scopes: 'tasks:read', 'tasks:write'."
    },
    "state": {
      "type": "string",
      "title": "State",
      "default": null,
      "examples": [
        "secure_random_state_1234"
      ],
      "nullable": true,
      "description": "An opaque value passed back to your redirect URI for CSRF protection and to maintain request state."
    },
    "client_id": {
      "type": "string",
      "title": "Client Id",
      "examples": [
        "your_client_id_here"
      ],
      "description": "Your TickTick application's client ID obtained from the Developer Center."
    },
    "redirect_uri": {
      "type": "string",
      "title": "Redirect Uri",
      "examples": [
        "https://yourapp.com/oauth/callback"
      ],
      "description": "The exact redirect URI registered with your TickTick application; the authorization code will be sent here."
    }
  }
}