-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathauthlete.properties
More file actions
75 lines (67 loc) · 2.89 KB
/
Copy pathauthlete.properties
File metadata and controls
75 lines (67 loc) · 2.89 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#================================================================================
# Authlete Configuration File
#
# There are several ways to construct an AuthleteConfiguration instance
# which represents "authlete configuration". AuthletePropertiesConfiguration
# is one of implementations of the AuthleteConfiguration interface. This file
# can be used as input for AuthletePropertiesConfiguration. See the JavaDoc
# of authlete-java-common library for details.
#
# authlete-java-common library
# Source: https://github.com/authlete/authlete-java-common
# JavaDoc: http://authlete.github.io/authlete-java-common/
#
# This file is configured for Authlete 3.0 (API V3) by default. Authlete 3.0
# is the latest generation of Authlete and the version used for upcoming
# releases and updates. If you still rely on Authlete 2.x, see the
# "Authlete 2.x (legacy)" block near the bottom of this file.
#
#================================================================================
# api_version
#
# The Authlete API version. "V3" selects Authlete 3.0, which is the default
# for this authorization server.
#
api_version = V3
# base_url
#
# The base URL of the Authlete server. For the Authlete 3.0 Shared Cloud,
# choose the URL of your service's cluster region:
#
# https://us.authlete.com - 🇺🇸 US Cluster
# https://jp.authlete.com - 🇯🇵 Japan Cluster
# https://eu.authlete.com - 🇪🇺 Europe Cluster
# https://br.authlete.com - 🇧🇷 Brazil Cluster
#
# If you are using a dedicated server, please contact "Authlete, Inc."
# <support@authlete.com> about the URL of your dedicated Authlete server.
#
base_url = https://us.authlete.com
# service.api_key
# service.access_token
#
# Credentials of one of your services. With Authlete 3.0 (API V3), a service
# is identified by its API key and authenticated with an access token. You
# can find these in the Authlete management console
# (https://console.authlete.com/).
#
service.api_key =
service.access_token =
#--------------------------------------------------------------------------------
# Authlete 2.x (legacy)
#
# Earlier versions of this authorization server used Authlete 2.x. To use
# Authlete 2.x instead of 3.0, comment out the "api_version = V3" block above
# and uncomment the lines below.
#
# Authlete 2.x uses the shared server at https://api.authlete.com and
# authenticates a service with an API key + API secret pair. You can find
# these credentials in the Service Owner Console (https://so.authlete.com/).
#
# You can use "service.api_secret.encrypted" instead of "service.api_secret"
# to avoid writing a plain secret key in this configuration file. See the
# JavaDoc of AuthletePropertiesConfiguration for details.
#--------------------------------------------------------------------------------
#base_url = https://api.authlete.com
#service.api_key =
#service.api_secret =