blob: de90238c72c785339ea32f725b3fd6a961a6bb44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# This file is in the public domain.
# FIXME: add to taler.conf man page!
# Example persona provider configuration.
[kyclogic-persona]
# Optional authorization token for the webhook
#WEBHOOK_AUTH_TOKEN = wbhsec_698b5a19-c790-47f6-b396-deb572ec82f9
[kyc-provider-example-persona]
COST = 42
LOGIC = persona
USER_TYPE = INDIVIDUAL
PROVIDED_CHECKS = EXAMPLE_DO_NOT_USE
# How long is the KYC check valid?
PERSONA_VALIDITY = forever
# Which subdomain is used for our API?
PERSONA_SUBDOMAIN = taler
# Authentication token to use.
PERSONA_AUTH_TOKEN = persona_sandbox_42
# Form to use.
PERSONA_TEMPLATE_ID = itempl_Uj6Xxxxx
# Where do we redirect to after KYC finished successfully.
KYC_POST_URL = https://taler.net/
|