Skip to content

Commit 331556a

Browse files
some more fixes
1 parent 428306f commit 331556a

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

src/pages/guides/authentication/AdminAuthentication/implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Note: You must be an Adobe Technology Partner Program (TPP) partner to use the E
5252

5353
The consent workflow starts when the customer admin visits the partner app and clicks on the 'Connect with Adobe' button. You must construct the consent URL and embed it into the 'Connect with Adobe' button. To construct the consent URL, follow these steps:
5454

55-
1. The Adobe IMS consent endpoint for the Enterprise Web App credential is https://id.adobe.com/consent.
55+
1. The Adobe IMS consent endpoint for the Enterprise Web App credential is [https://id.adobe.com/consent](https://id.adobe.com/consent).
5656
2. Append these query parameters to the consent URL: `client_id`, `scope`, `state`, `nonce`, and optionally `redirect_uri`.
5757
1. Copy the value of `client_id` and `scope` from the Enterprise Web App credential overview page.
5858
2. Generate cryptographically secure random values for the `state` and `nonce` parameters. Store these securely in the user’s session on your backend. Furthermore, to retrieve the user's session later, store the session identifier in the user's browser (such as a secure cookie or encrypted local storage).

src/pages/guides/authentication/AdminAuthentication/ims.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Following is an API reference for Adobe Identity Management Services (IMS) APIs.
44

5-
## Consent URL parameters
5+
## Consent URL
66

77
### Base URL
88

src/pages/guides/authentication/AdminAuthentication/samples.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,23 @@ if __name__ == "__main__":
212212
213213
### Add these dependencies to your pom.xml
214214
215+
216+
```xml
217+
<dependencies>
218+
<dependency>
219+
<groupId>com.auth0</groupId>
220+
<artifactId>java-jwt</artifactId>
221+
<version>4.4.0</version>
222+
</dependency>
223+
<dependency>
224+
<groupId>com.auth0</groupId>
225+
<artifactId>jwks-rsa</artifactId>
226+
<version>0.22.0</version>
227+
</dependency>
228+
</dependencies>
229+
230+
```
231+
215232
### Verify the redirect
216233
217234
```java

0 commit comments

Comments
 (0)