Skip to content

Commit 16a728e

Browse files
committed
docs: shorten navigation titles to max 30 characters
Truncate sidebar and "On this page" headings that exceeded 30 chars for better readability in the navigation bars.
1 parent 59b6703 commit 16a728e

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default defineConfig({
7878
{ text: 'Best Practices', link: '/oidc-integration-guide/best-practices' },
7979
{ text: 'Public Cloud Integration Guide', link: '/oidc-integration-guide/cloud-integration-guide' },
8080
{ text: 'MobileID OIDC - Use Cases', link: '/oidc-integration-guide/oidc-use-cases' },
81-
{ text: 'Message Formats on the Mobile ID App', link: '/oidc-integration-guide/message-formats' }
81+
{ text: 'App Message Formats', link: '/oidc-integration-guide/message-formats' }
8282
]
8383
},
8484
{

docs/oidc-integration-guide/best-practices.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Best Practices
22

3-
## Pushed Authorization Request (PAR)
3+
## Pushed Auth Request (PAR)
44

5-
### Back-channel submission of authorisation parameters
5+
### Back-channel PAR Submission
66

77
The Pushed Authorisation Request (PAR) endpoint gives OAuth 2.0 clients a back-channel to post the parameters of an authorisation request to the Mobile ID server, to obtain an opaque URI handle for them, and then continue with the frontend redirection to the authorisation endpoint as usual.
88

@@ -105,13 +105,13 @@ Provide state and nonce values with sufficient entropy.
105105
- [OIDC Core — AuthRequest](http://openid.net/specs/openid-connect-core-1_0.html#AuthRequest)
106106
- [OIDC Core — NonceNotes](http://openid.net/specs/openid-connect-core-1_0.html#NonceNotes)
107107

108-
### Validate authentication responses
108+
### Validate Auth Responses
109109

110110
Handle the state parameter correctly.
111111

112112
- [OIDC Core — AuthResponseValidation](http://openid.net/specs/openid-connect-core-1_0.html#AuthResponseValidation)
113113

114-
### Validate token endpoint responses
114+
### Validate Token Responses
115115

116116
Validate the ID Token and verify scopes.
117117

docs/oidc-integration-guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ See [OpenID Connect FAQ](https://openid.net/connect/faq/) for a set of answers t
1515
The Mobile ID solution protects access to your company data and applications with a comprehensive end-to-end solution for a strong multi-factor authentication (MFA). Please visit [mobileid.ch](https://mobileid.ch) for further information. Do not hesitate to contact us in case of any questions.
1616

1717

18-
## Basic Key Concepts Terminology
18+
## Key Concepts & Terminology
1919

2020
The most basic key concepts are as follows.
2121

docs/oidc-integration-guide/message-formats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ GET /oidc/authorize?
129129
Request an App ACR (e.g., `mid_al3_mobileapp`) if you want to ensure the App method is selected.
130130
:::
131131

132-
## What exactly is signed (classic vs. Transaction Approval)
132+
## Signed Data Comparison
133133

134134
**Classic DTBD:** the service signs the visible text string.
135135

docs/oidc-integration-guide/oidc-use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If the request contains a `login_hint` parameter with the user's phone number, t
1919
![use-case-msisdn-rp-knows](/img/use-case-msisdn-rp-knows.png)
2020

2121

22-
## Prompt user for user credentials
22+
## Prompt for User Credentials
2323

2424
If the request contains a `login_hint` parameter set to `useLDAP:true` and a `prompt` parameter set to `login`, the result will be that the user must enter the user credentials on the MobileID side, as shown in the figure below. This is a typical **B2B** scenario, for example the MobileID login to a company service.
2525

docs/rest-api-guide/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ If both requests target the Mobile ID App-based authentication method, the behav
110110
- **Fault Code (cancellation of first transaction):** `401 / USER_CANCEL`
111111
- See **Section 6** for further information.
112112

113-
## Mobile ID Serial Number Validation
113+
## Serial Number Validation
114114

115115
With an MSS Signature response, you will get signature data and the mobile user's X.509 certificate, which contains the public key required to validate the signature data.
116116

docs/rest-api-guide/root-ca-certs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
There are two different scenarios (described in the two chapters below) to consider, where x.509 certificates are involved. Since they do not have the same root CA, you must ensure that your client's TrustStore contains all involved "Root CA" certificates.
44

55

6-
## Mobile ID X509 Server Certificate
6+
## X509 Server Certificate
77

88
As described in [Section Mutual Authentication](/rest-api-guide/app-provider-client-integration.html#mutual-authentication), the Mobile ID server's x.509 certificate that is used in the mutual SSL/TLS authentication process is a SwissSign certificate.
99

@@ -15,7 +15,7 @@ You can download the "SwissSign Gold CA - G2" certificate from the SwissSign sit
1515
| D8 C5 38 8A B7 30 1B 1B 6E D4 7A E6 45 25 3A 6F 9F 1A 27 61 |
1616

1717

18-
## Mobile ID User X509 Certificate
18+
## User X509 Certificate
1919

2020
As described in [Section MSS Signature](/rest-api-guide/mobile-id-api.html#mss-signature), the main scenario is a strong authentication, where the AP receives a signature response, which includes the signature object and the mobile user's x.509 certificate (public key). The AP should validate the signature as well as the x.509 certificate's trust chain.
2121

0 commit comments

Comments
 (0)