fix: remove type parameter from login request (v0.1.4)
This commit is contained in:
@@ -18,7 +18,7 @@ Content-Type: application/x-www-form-urlencoded
|
|||||||
|---|---|
|
|---|---|
|
||||||
| `identifier` | E-Mail-Adresse |
|
| `identifier` | E-Mail-Adresse |
|
||||||
| `password` | Passwort |
|
| `password` | Passwort |
|
||||||
| `type` | `"EMAIL"` (verifiziert) |
|
| `type` | nicht senden — wird als `undefined` ignoriert (verifiziert per JS-Analyse) |
|
||||||
| `clientId` | weglassen |
|
| `clientId` | weglassen |
|
||||||
| `clientSecret` | weglassen |
|
| `clientSecret` | weglassen |
|
||||||
| `generateAutologinToken` | weglassen |
|
| `generateAutologinToken` | weglassen |
|
||||||
@@ -130,7 +130,7 @@ offener Punkte (z.B. `type`-Parameter beim Login, Kreis-Felder in Response).
|
|||||||
|
|
||||||
## Noch zu verifizieren
|
## Noch zu verifizieren
|
||||||
|
|
||||||
- ~~Exakter Wert für `type`-Parameter beim Login~~ → `"EMAIL"` (verifiziert)
|
- ~~Exakter Wert für `type`-Parameter beim Login~~ → nicht senden (verifiziert per JS-Analyse)
|
||||||
- Response-Struktur von `famlistfamily` (Kreise)
|
- Response-Struktur von `famlistfamily` (Kreise)
|
||||||
- Kreis-Zuordnung in `accgetallfamily`-Response
|
- Kreis-Zuordnung in `accgetallfamily`-Response
|
||||||
- Ob `partnerScope` / `withStateBean` benötigt werden
|
- Ob `partnerScope` / `withStateBean` benötigt werden
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "mcp-familywall"
|
name = "mcp-familywall"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
description = "MCP server for Family Wall — read your family's lists and tasks via Claude"
|
description = "MCP server for Family Wall — read your family's lists and tasks via Claude"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.1.3"
|
__version__ = "0.1.4"
|
||||||
|
|||||||
@@ -86,7 +86,6 @@ class FamilyWallClient:
|
|||||||
payload = {
|
payload = {
|
||||||
"identifier": email,
|
"identifier": email,
|
||||||
"password": password,
|
"password": password,
|
||||||
"type": "EMAIL",
|
|
||||||
}
|
}
|
||||||
_debug_log("LOGIN request", _mask_password(payload))
|
_debug_log("LOGIN request", _mask_password(payload))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user