# app.chavatar.auth.getLoginUrl

> Published by [chavatar.app](https://lexicon.garden/identity/did:web:chavatar.app)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.getLoginUrl)
- [Documentation](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.getLoginUrl/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.auth.getLoginUrl/examples)

## Definitions

### `app.chavatar.auth.getLoginUrl`

**Type**: `query`

Bluesky ハンドルに対応する PDS の OAuth 認証 URL を返す。

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `handle` | `string` (handle) | Yes | Bluesky ハンドル (例: user.bsky.social) |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | PDS の OAuth 認証 URL |

## Raw Schema

```json
{
  "id": "app.chavatar.auth.getLoginUrl",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "url"
          ],
          "properties": {
            "url": {
              "type": "string",
              "format": "uri",
              "maxLength": 2048,
              "description": "PDS の OAuth 認証 URL"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "handle"
        ],
        "properties": {
          "handle": {
            "type": "string",
            "format": "handle",
            "maxLength": 253,
            "description": "Bluesky ハンドル (例: user.bsky.social)"
          }
        }
      },
      "description": "Bluesky ハンドルに対応する PDS の OAuth 認証 URL を返す。"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
