View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0010380 | Taler | wallet-core | public | 2025-09-08 20:17 | 2025-09-08 20:28 |
Reporter | Florian Dold | Assigned To | Florian Dold | ||
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | assigned | Resolution | open | ||
Target Version | 1.1 | ||||
Summary | 0010380: implement completeExchangeBaseUrl request | ||||
Description | It should work similar to the generic canonicalizeBaseUrl request, but contact the network to possibly complete and always validate the base URL. | ||||
Tags | No tags attached. | ||||
|
interface CompleteBaseUrlResult { /** Completed exchange base URL, if completion was possible */ completion: string | undefined; /** * bad-syntax: url is so badly malformed, it can't be completed * bad-network: syntax okay, but exchange can't be reached * bad-protocol: syntax and network okay, but not talking to an exchange * ok: completion is a proper exchange */ status: "bad-syntax" | "bad-network" | "bad-protocol" | "ok" /** Error details in case status is not "ok" */ error: TalerErrorDetail | undefined; } |
Date Modified | Username | Field | Change |
---|---|---|---|
2025-09-08 20:17 | Florian Dold | New Issue | |
2025-09-08 20:17 | Florian Dold | Assigned To | => Florian Dold |
2025-09-08 20:17 | Florian Dold | Status | new => assigned |
2025-09-08 20:28 | Florian Dold | Note Added: 0025861 |