Ticktick
TICKTICK_OAUTH2_AUTHORIZATION_STEP1
Tool to generate the TickTick OAuth2 authorization URL. Use to redirect the user to obtain the authorization code (step 1).
Remote ticktick
Other tools also called TICKTICK_OAUTH2_AUTHORIZATION_STEP1?
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 (optional)."
},
"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 after user approval."
}
}
}