View Issue Details

IDProjectCategoryView StatusLast Update
0010380Talerwallet-corepublic2025-09-08 20:28
ReporterFlorian Dold Assigned ToFlorian Dold  
PrioritynormalSeverityminorReproducibilityhave not tried
Status assignedResolutionopen 
Target Version1.1 
Summary0010380: implement completeExchangeBaseUrl request
DescriptionIt should work similar to the generic canonicalizeBaseUrl request, but contact the network to possibly complete and always validate the base URL.
TagsNo tags attached.

Activities

Florian Dold

2025-09-08 20:28

manager   ~0025861

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;
}

Issue History

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