{"id":13316904,"url":"https://github.com/yupix/fastapi-misskey","last_synced_at":"2026-01-20T02:47:22.762Z","repository":{"id":39914980,"uuid":"435634221","full_name":"yupix/fastapi-misskey","owner":"yupix","description":"FastAPI Misskey extension library","archived":false,"fork":false,"pushed_at":"2022-06-02T16:20:05.000Z","size":48,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T20:46:19.375Z","etag":null,"topics":["fastapi","misskey"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yupix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-06T20:14:41.000Z","updated_at":"2026-01-07T21:16:05.000Z","dependencies_parsed_at":"2022-09-02T15:31:53.769Z","dependency_job_id":null,"html_url":"https://github.com/yupix/fastapi-misskey","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yupix/fastapi-misskey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yupix%2Ffastapi-misskey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yupix%2Ffastapi-misskey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yupix%2Ffastapi-misskey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yupix%2Ffastapi-misskey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yupix","download_url":"https://codeload.github.com/yupix/fastapi-misskey/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yupix%2Ffastapi-misskey/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28401910,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastapi","misskey"],"created_at":"2024-07-29T18:23:29.891Z","updated_at":"2026-01-20T02:47:22.743Z","avatar_url":"https://github.com/yupix.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastAPI Misskey\n\nこのライブラリはFastAPIにMisskeyの認証を作成するお手伝いをするライブラリです\n\n## Example\n\n```python\nfrom typing import Optional\n\nfrom fastapi import Depends, FastAPI\n\nfrom fastapi_misskey.client import MisskeyAuthClient\n\napp = FastAPI()\nmisskey = MisskeyAuthClient(\n    'https://example.com',\n    'test',\n    'http://localhost:8000/callback',\n    description='FastAPI Misskey Auth'\n)\n\n\n@app.get('/login')\nasync def login():\n    return {'url': await misskey.get_auth_url()}\n\n\n@app.get('/callback')\nasync def callback(session: Optional[str] = None, token: Optional[str] = None):\n    token, user = await misskey.get_access_token(session, token)\n    return {'token': token, 'user': user}\n\n\n@app.get('/profile')\nasync def profile(user=Depends(misskey.get_user)):\n    if user.get('error'):\n        return user\n    else:\n        return {'user': user}\n\n```\n\n## Inspired by\n\n[fastapi-discord](https://github.com/Tert0/fastapi-discord)\n\nThanks to @Tert0","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyupix%2Ffastapi-misskey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyupix%2Ffastapi-misskey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyupix%2Ffastapi-misskey/lists"}